Searched refs:mHSVO (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
H A DColorRectView.java52 private float[] mHSVO = new float[4]; field in class:ColorRectView
110 mHSVO[0] = ((float) Math.toDegrees(hue) + 360) % 360;
111 mHSVO[1] = sat;
112 notifyColorListeners(mHSVO);
131 float val = mHSVO[2];
141 hsv[2] = mHSVO[2];
181 double hue = mHSVO[0];
182 double sat = mHSVO[1];
200 System.arraycopy(hsvo, 0, mHSVO, 0, mHSVO
[all...]
H A DColorValueView.java48 private float[] mHSVO = new float[4]; field in class:ColorValueView
99 mHSVO[2] = (mDotY - mBorder) / (mHeight - mBorder * 2);
100 notifyColorListeners(mHSVO);
111 float pos = mHSVO[2] * (mHeight - mBorder * 2);
132 mHSVO[0], mHSVO[1], 0f };
156 System.arraycopy(hsvo, 0, mHSVO, 0, mHSVO.length);
H A DColorOpacityView.java53 private float[] mHSVO = new float[4]; field in class:ColorOpacityView
115 mHSVO[3] = (mDotX - mBorder) / (mWidth - mBorder * 2);
116 notifyColorListeners(mHSVO);
128 float pos = mHSVO[3] * (mWidth - mBorder * 2);
149 int color2 = Color.HSVToColor(mHSVO);
173 System.arraycopy(hsv, 0, mHSVO, 0, mHSVO.length);
H A DColorPickerDialog.java33 float[] mHSVO = new float[4]; field in class:ColorPickerDialog
56 cl.setColor(mHSVO);
102 System.arraycopy(hsvo, 0, mHSVO, 0, mHSVO.length);

Completed in 122 milliseconds