Home | History | Annotate | Download | only in dynamicui

Lines Matching defs:mTmpHSL

58     private float[] mTmpHSL = new float[3];
131 ColorUtils.colorToHSL(mainColor, mTmpHSL);
132 final float mainLuminosity = mTmpHSL[2];
133 ColorUtils.colorToHSL(MAIN_COLOR_LIGHT, mTmpHSL);
134 final float lightLuminosity = mTmpHSL[2];
138 ColorUtils.colorToHSL(MAIN_COLOR_DARK, mTmpHSL);
139 final float darkLuminosity = mTmpHSL[2];
169 mTmpHSL[0] = fract(h[fitIndex]) * 360.0f;
170 mTmpHSL[1] = s[fitIndex];
171 mTmpHSL[2] = l[fitIndex];
172 return ColorUtils.HSLToColor(mTmpHSL);