/frameworks/base/graphics/java/android/graphics/ |
D | Color.java | 78 public static int blue(int color) { in blue() method in Color 92 public static int rgb(int red, int green, int blue) { in rgb() argument 93 return (0xFF << 24) | (red << 16) | (green << 8) | blue; in rgb() 106 public static int argb(int alpha, int red, int green, int blue) { in argb() argument 107 return (alpha << 24) | (red << 16) | (green << 8) | blue; in argb() 260 float blue = 0.0f; in HSBtoColor() local 273 blue = pv; in HSBtoColor() 278 blue = pv; in HSBtoColor() 283 blue = tv; in HSBtoColor() 288 blue = b; in HSBtoColor() [all …]
|
/frameworks/base/opengl/libagl/ |
D | dxt.cpp | 54 #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/base/opengl/tools/glgen/specs/gles11/ |
D | GLES10.spec | 7 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 )
|
D | GLES11Ext.spec | 15 void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) 18 void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
|
D | GLES20.spec | 8 void glBlendColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 17 void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 20 void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
|
D | GLES11.spec | 6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
|
/frameworks/base/opengl/libs/GLES_CM/ |
D | gl_api.in | 4 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 …]
|
D | glext_api.in | 43 void API_ENTRY(glClearColorxOES)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) { 44 CALL_GL_API(glClearColorxOES, red, green, blue, alpha); 52 void API_ENTRY(glColor4xOES)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) { 53 CALL_GL_API(glColor4xOES, red, green, blue, alpha);
|
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/ |
D | GL10.java | 292 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/base/opengl/tools/glgen/specs/jsr239/ |
D | glspec-1.0 | 7 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 )
|
D | glspec-1.1 | 6 void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha )
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLES10.java | 318 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
|
D | GLErrorWrapper.java | 106 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 …]
|
D | GLLogWrapper.java | 1231 public void glClearColor(float red, float green, float blue, float alpha) { in glClearColor() argument 1235 arg("blue", blue); in glClearColor() 1239 mgl.glClearColor(red, green, blue, alpha); in glClearColor() 1243 public void glClearColorx(int red, int green, int blue, int alpha) { in glClearColorx() argument 1247 arg("blue", blue); in glClearColorx() 1251 mgl.glClearColorx(red, green, blue, alpha); in glClearColorx() 1291 public void glColor4f(float red, float green, float blue, float alpha) { in glColor4f() argument 1295 arg("blue", blue); in glColor4f() 1299 mgl.glColor4f(red, green, blue, alpha); in glColor4f() 1303 public void glColor4x(int red, int green, int blue, int alpha) { in glColor4x() argument [all …]
|
D | GLES11Ext.java | 280 int blue, in glClearColorxOES() argument 310 int blue, in glColor4xOES() argument
|
D | GLES20.java | 386 float blue, in glBlendColor() argument 454 float blue, in glClearColor() argument 475 boolean blue, in glColorMask() argument
|
/frameworks/base/opengl/tests/angeles/include/GLES/ |
D | gl.h | 479 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/opengl/java/com/google/android/gles_jni/ |
D | GLImpl.java | 131 float blue, in glClearColor() argument 140 int blue, in glClearColorx() argument 173 float blue, in glColor4f() argument 182 int blue, in glColor4x() argument 191 boolean blue, in glColorMask() argument 1225 byte blue, in glColor4ub() argument
|
/frameworks/base/libs/rs/ |
D | rsScriptC_Lib.cpp | 914 float blue = 0.0f; in SC_hsbToRgb() local 931 blue = pv; in SC_hsbToRgb() 936 blue = pv; in SC_hsbToRgb() 941 blue = tv; in SC_hsbToRgb() 946 blue = z; in SC_hsbToRgb() 951 blue = z; in SC_hsbToRgb() 956 blue = qv; in SC_hsbToRgb() 962 rgb[2] = blue; in SC_hsbToRgb()
|
/frameworks/base/opengl/include/GLES/ |
D | gl.h | 594 GL_API void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha); 597 GL_API void GL_APIENTRY glColor4f (GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha); 641 GL_API void GL_APIENTRY glClearColorx (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); 646 GL_API void GL_APIENTRY glColor4ub (GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha); 647 GL_API void GL_APIENTRY glColor4x (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); 648 GL_API void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alph…
|
/frameworks/base/graphics/tests/graphicstests/src/android/graphics/ |
D | BitmapTest.java | 219 int b0 = Color.blue(c0); in testSetPixelsWithNonOpaqueAlpha() 220 int b1 = Color.blue(c1); in testSetPixelsWithNonOpaqueAlpha()
|
/frameworks/base/opengl/libs/GLES2/ |
D | gl2_api.in | 22 void API_ENTRY(glBlendColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { 23 CALL_GL_API(glBlendColor, red, green, blue, alpha); 49 void API_ENTRY(glClearColor)(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) { 50 CALL_GL_API(glClearColor, red, green, blue, alpha); 58 void API_ENTRY(glColorMask)(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { 59 CALL_GL_API(glColorMask, red, green, blue, alpha);
|
/frameworks/base/core/jni/android/graphics/ |
D | Shader.cpp | 17 static void Color_RGBToHSV(JNIEnv* env, jobject, int red, int green, int blue, jfloatArray hsvArray) in Color_RGBToHSV() argument 20 SkRGBToHSV(red, green, blue, hsv); in Color_RGBToHSV()
|
/frameworks/base/opengl/libs/ |
D | entries.in | 15 GL_ENTRY(void, glBlendColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 28 GL_ENTRY(void, glClearColor, GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 29 GL_ENTRY(void, glClearColorx, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) 30 GL_ENTRY(void, glClearColorxOES, GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) 43 GL_ENTRY(void, glColor4f, GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) 44 GL_ENTRY(void, glColor4ub, GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) 45 GL_ENTRY(void, glColor4x, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) 46 GL_ENTRY(void, glColor4xOES, GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) 47 GL_ENTRY(void, glColorMask, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha)
|
/frameworks/base/core/jni/ |
D | android_opengl_GLES10.cpp | 219 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) { in android_glClearColor__FFFF() argument 223 (GLclampf)blue, in android_glClearColor__FFFF() 231 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) { in android_glClearColorx__IIII() argument 235 (GLclampx)blue, in android_glClearColorx__IIII() 279 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) { in android_glColor4f__FFFF() argument 283 (GLfloat)blue, in android_glColor4f__FFFF() 291 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) { in android_glColor4x__IIII() argument 295 (GLfixed)blue, in android_glColor4x__IIII() 303 (JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) { in android_glColorMask__ZZZZ() argument 307 (GLboolean)blue, in android_glColorMask__ZZZZ()
|