Home | History | Annotate | Download | only in itf

Lines Matching defs:color

63         SLHSL color = *pColor;
64 if (!(0 <= color.hue && color.hue <= 360000))
66 if (!(0 <= color.saturation && color.saturation <= 1000))
68 if (!(0 <= color.lightness && color.lightness <= 1000))
73 thiz->mColors[index] = color;
92 SLHSL color = thiz->mColors[index];
94 *pColor = color;
114 SLHSL *color = thiz->mColors;
116 for (index = 0; index < MAX_LED_COUNT; ++index, ++color) {
117 color->hue = 0; // red, but per specification 1.0.1 pg. 259: "Default color is undefined."
118 color->saturation = 1000;
119 color->lightness = 1000;