Audacity 3.2.0
Functions
anonymous_namespace{TrackArtist.cpp} Namespace Reference

Functions

void ChangeLightness (wxPen &pen, int ialpha)
 
void ChangeLightness (wxBrush &brush, int ialpha)
 

Function Documentation

◆ ChangeLightness() [1/2]

void anonymous_namespace{TrackArtist.cpp}::ChangeLightness ( wxBrush &  brush,
int  ialpha 
)

Definition at line 60 of file TrackArtist.cpp.

61 {
62 brush.SetColour(brush.GetColour().ChangeLightness(ialpha));
63 }

Referenced by TrackArtist::SetColours().

Here is the caller graph for this function:

◆ ChangeLightness() [2/2]

void anonymous_namespace{TrackArtist.cpp}::ChangeLightness ( wxPen &  pen,
int  ialpha 
)

Definition at line 55 of file TrackArtist.cpp.

56 {
57 pen.SetColour(pen.GetColour().ChangeLightness(ialpha));
58 }