Home
last modified time | relevance | path

Searched refs:blue (Results 1 – 25 of 94) sorted by relevance

1234

/frameworks/base/graphics/java/android/graphics/
DColor.java79 public static int blue(int color) { in blue() method in Color
93 public static int rgb(int red, int green, int blue) { in rgb() argument
94 return (0xFF << 24) | (red << 16) | (green << 8) | blue; in rgb()
107 public static int argb(int alpha, int red, int green, int blue) { in argb() argument
108 return (alpha << 24) | (red << 16) | (green << 8) | blue; in argb()
263 float blue = 0.0f; in HSBtoColor() local
276 blue = pv; in HSBtoColor()
281 blue = pv; in HSBtoColor()
286 blue = tv; in HSBtoColor()
291 blue = b; in HSBtoColor()
[all …]
/frameworks/native/services/surfaceflinger/RenderEngine/
DDescription.cpp72 void Description::setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { in setColor() argument
75 mColor[2] = blue; in setColor()
DRenderEngine.cpp158 float red, float green, float blue, float alpha) { in fillRegionWithColor() argument
177 setupFillWithColor(red, green, blue, alpha); in fillRegionWithColor()
181 void RenderEngine::clearWithColor(float red, float green, float blue, float alpha) { in clearWithColor() argument
182 glClearColor(red, green, blue, alpha); in clearWithColor()
DRenderEngine.h64 void clearWithColor(float red, float green, float blue, float alpha);
66 float red, float green, float blue, float alpha);
DDescription.h66 void setColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
/frameworks/native/opengl/libagl/
Ddxt.cpp54 #define blue(x) ( (x) & 0x1f) macro
237 int b0 = blue(color0); in decodeDXT1()
241 int b1 = blue(color1); in decodeDXT1()
367 int b0 = blue(color0); in decodeDXT3()
371 int b1 = blue(color1); in decodeDXT3()
524 int b0 = blue(color0); in decodeDXT5()
528 int b1 = blue(color1); in decodeDXT5()
/frameworks/native/opengl/tests/testViewport/
DREADME7 The program clears the screen to blue, then draws a full screen white quad that
18 Actual: screen is blue with offset white rectangle.
/frameworks/native/opengl/tests/testFramerate/src/com/android/testframerate/
DTestFramerateView.java78 float blue = (now_us % 3000000) / 3000000.f; in onDrawFrame() local
79 GLES20.glClearColor(red, green, blue, 1.0f); in onDrawFrame()
/frameworks/native/opengl/libs/GLES_CM/
Dgl_api.in4 void API_ENTRY(glClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) {
5 CALL_GL_API(glClearColor, red, green, blue, alpha);
13 void API_ENTRY(glColor4f)(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) {
14 CALL_GL_API(glColor4f, red, green, blue, alpha);
139 void API_ENTRY(glClearColorx)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) {
140 CALL_GL_API(glClearColorx, red, green, blue, alpha);
154 void API_ENTRY(glColor4ub)(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) {
155 CALL_GL_API(glColor4ub, red, green, blue, alpha);
157 void API_ENTRY(glColor4x)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) {
158 CALL_GL_API(glColor4x, red, green, blue, alpha);
[all …]
/frameworks/native/opengl/tools/glgen/specs/gles11/
DGLES10.spec7 void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
8 void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
13 void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
14 void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
15 void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DDuotoneFilter.java117 Color.blue(mFirstColor)/255f }; in updateParameters()
120 Color.blue(mSecondColor)/255f }; in updateParameters()
/frameworks/base/media/mca/filterfw/native/core/
Dshader_program.h350 void SetClearColor(float red, float green, float blue, float alpha);
429 float blue; member
432 RGBAColor() : red(0), green(0), blue(0), alpha(1) { in RGBAColor()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DPathDestructionActivity.java76 int blue = MathUtils.random(255); in getRandomColor() local
77 return 0xff000000 | red << 16 | green << 8 | blue; in getRandomColor()
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/time/
DRadialSelectorView.java103 int blue = res.getColor(R.color.blue); in initialize() local
104 mPaint.setColor(blue); in initialize()
151 color = res.getColor(R.color.blue); in setTheme()
DAmPmCirclesView.java78 mSelectedColor = res.getColor(R.color.blue); in initialize()
110 mSelectedColor = res.getColor(R.color.blue); in setTheme()
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
DGL10.java292 float blue, in glClearColor() argument
299 int blue, in glClearColorx() argument
322 float blue, in glColor4f() argument
329 int blue, in glColor4x() argument
336 boolean blue, in glColorMask() argument
/frameworks/native/opengl/tools/glgen/specs/jsr239/
Dglspec-1.07 void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
8 void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
13 void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha )
14 void glColor4x ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
15 void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
/frameworks/base/docs/html/about/
Dstart.jd17 h2.blue{color:#33B5E5}
18 h2.blue+hr{background:#33B5E5}
28 <h2 class="blue">1. Design</h2>
/frameworks/base/opengl/java/android/opengl/
DGLES10.java318 float blue, in glClearColor() argument
327 int blue, in glClearColorx() argument
360 float blue, in glColor4f() argument
369 int blue, in glColor4x() argument
378 boolean blue, in glColorMask() argument
DGLErrorWrapper.java106 public void glClearColor(float red, float green, float blue, float alpha) { in glClearColor() argument
108 mgl.glClearColor(red, green, blue, alpha); in glClearColor()
112 public void glClearColorx(int red, int green, int blue, int alpha) { in glClearColorx() argument
114 mgl.glClearColorx(red, green, blue, alpha); in glClearColorx()
142 public void glColor4f(float red, float green, float blue, float alpha) { in glColor4f() argument
144 mgl.glColor4f(red, green, blue, alpha); in glColor4f()
148 public void glColor4x(int red, int green, int blue, int alpha) { in glColor4x() argument
150 mgl.glColor4x(red, green, blue, alpha); in glColor4x()
154 public void glColorMask(boolean red, boolean green, boolean blue, in glColorMask() argument
157 mgl.glColorMask(red, green, blue, alpha); in glColorMask()
[all …]
/frameworks/native/opengl/libs/
Ddebug.in13 …Lclampx green, GLclampx blue, GLclampx alpha), (red, green, blue, alpha), 4, "GLclampx", red, "GLc…
14 …Lclampx green, GLclampx blue, GLclampx alpha), (red, green, blue, alpha), 4, "GLclampx", red, "GLc…
25 …d, GLfloat green, GLfloat blue, GLfloat alpha), (red, green, blue, alpha), 4, "GLfloat", red, "GLf…
26 …d, GLubyte green, GLubyte blue, GLubyte alpha), (red, green, blue, alpha), 4, "GLubyte", red, "GLu…
27 …d, GLfixed green, GLfixed blue, GLfixed alpha), (red, green, blue, alpha), 4, "GLfixed", red, "GLf…
28 …d, GLfixed green, GLfixed blue, GLfixed alpha), (red, green, blue, alpha), 4, "GLfixed", red, "GLf…
/frameworks/native/opengl/tests/angeles/include/GLES/
Dgl.h479 GLAPI void APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
480 GLAPI void APIENTRY glClearColorx (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
485 GLAPI void APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
486 GLAPI void APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
487 GLAPI void APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DBarTransitions.java210 (int)(v * Color.blue(targetColor) + Color.blue(mColorStart) * (1 - v))); in draw()
/frameworks/base/opengl/java/com/google/android/gles_jni/
DGLImpl.java132 float blue, in glClearColor() argument
141 int blue, in glClearColorx() argument
174 float blue, in glColor4f() argument
183 int blue, in glColor4x() argument
192 boolean blue, in glColorMask() argument
1226 byte blue, in glColor4ub() argument
/frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
DErrorCalculator.java164 totalError += Math.abs(Color.blue(idealColor) - Color.blue(givenColor)); in calcError()

1234