Home | History | Annotate | Download | only in x11

Lines Matching refs:red

33 static int X11_SetGammaNoLock(_THIS, float red, float green, float blue)
41 if ( red < MIN_GAMMA ) {
42 gamma.red = MIN_GAMMA;
44 if ( red > MAX_GAMMA ) {
45 gamma.red = MAX_GAMMA;
47 gamma.red = red;
69 gamma_saved[0] = gamma.red;
83 int X11_SetVidModeGamma(_THIS, float red, float green, float blue)
88 result = X11_SetGammaNoLock(this, red, green, blue);
94 static int X11_GetGammaNoLock(_THIS, float *red, float *green, float *blue)
100 *red = gamma.red;
110 int X11_GetVidModeGamma(_THIS, float *red, float *green, float *blue)
115 result = X11_GetGammaNoLock(this, red, green, blue);