Searched refs:blue (Results 1 - 24 of 24) sorted by relevance

/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
H A DGLColor.java23 public final int blue; field in class:GLColor
26 public GLColor(int red, int green, int blue, int alpha) { argument
29 this.blue = blue;
33 public GLColor(int red, int green, int blue) { argument
36 this.blue = blue;
46 blue == color.blue &&
H A DGLVertex.java68 colorBuffer.put(color.blue);
H A DKube.java37 GLColor blue = new GLColor(0, 0, one);
114 mCubes[i + j].setFaceColor(Cube.kBack, blue);
/development/samples/ApiDemos/src/com/example/android/apis/animation/
H A DAnimationSeeking.java135 int blue = (int)(100 + Math.random() * 155);
136 int color = 0xff000000 | red << 16 | green << 8 | blue;
138 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DCustomEvaluator.java150 int blue = (int)(Math.random() * 255);
151 int color = 0xff000000 | red << 16 | green << 8 | blue;
153 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DReversingAnimation.java111 int blue = (int)(Math.random() * 255);
112 int color = 0xff000000 | red << 16 | green << 8 | blue;
114 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DAnimationCloning.java115 int blue = (int)(100 + Math.random() * 155);
116 int color = 0xff000000 | red << 16 | green << 8 | blue;
118 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DAnimationLoading.java139 int blue = (int)(100 + Math.random() * 155);
140 int color = 0xff000000 | red << 16 | green << 8 | blue;
142 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DAnimatorEvents.java179 int blue = (int)(Math.random() * 255);
180 int color = 0xff000000 | red << 16 | green << 8 | blue;
182 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DBouncingBalls.java161 int blue = (int)(Math.random() * 255);
162 int color = 0xff000000 | red << 16 | green << 8 | blue;
164 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
H A DMultiPropertyAnimation.java152 int blue = (int)(100 + Math.random() * 155);
153 int color = 0xff000000 | red << 16 | green << 8 | blue;
155 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DWindowSurface.java160 // X is red, Y is blue.
247 int blue = (int)mColor.y + 128;
248 if (blue > 255) blue = 255;
249 int color = 0xff000000 | (red<<16) | blue;
H A DCompressedTextureActivity.java143 byte blue = 0;
149 image.put(blue);
H A DColorPickerDialog.java134 int b = ave(Color.blue(c0), Color.blue(c1), p);
143 int b = Color.blue(color);
H A DBitmapPixels.java76 int b = Color.blue(c);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
H A DMatrixTrackingGL.java105 public void glClearColor(float red, float green, float blue, float alpha) { argument
106 mgl.glClearColor(red, green, blue, alpha);
109 public void glClearColorx(int red, int green, int blue, int alpha) { argument
110 mgl.glClearColorx(red, green, blue, alpha);
129 public void glColor4f(float red, float green, float blue, float alpha) { argument
130 mgl.glColor4f(red, green, blue, alpha);
133 public void glColor4x(int red, int green, int blue, int alpha) { argument
134 mgl.glColor4x(red, green, blue, alpha);
137 public void glColorMask(boolean red, boolean green, boolean blue, argument
139 mgl.glColorMask(red, green, blue, alph
765 glColor4ub(byte red, byte green, byte blue, byte alpha) argument
[all...]
/development/ndk/platforms/android-3/include/linux/
H A Dfb.h218 struct fb_bitfield blue; member in struct:fb_var_screeninfo
248 __u16 *blue; member in struct:fb_cmap
/development/ndk/platforms/android-4/samples/san-angeles/jni/
H A Dimportgl.h82 FNDEF(void, glClearColorx, (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha));
83 FNDEF(void, glColor4x, (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha));
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DGrid3.java118 getResources().getDrawable(R.drawable.blue)
/development/ndk/platforms/android-4/include/GLES/
H A Dgl.h594 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 alpha);
H A Dglext.h530 GL_API void GL_APIENTRY glClearColorxOES (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
533 GL_API void GL_APIENTRY glColor4xOES (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
570 typedef void (GL_APIENTRYP PFNGLCLEARCOLORXOESPROC) (GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
573 typedef void (GL_APIENTRYP PFNGLCOLOR4XOESPROC) (GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
/development/ndk/platforms/android-8/samples/bitmap-plasma/jni/
H A Dplasma.c140 static uint16_t make565(int red, int green, int blue) argument
144 ((blue >> 3) & 0x001f) );
/development/ndk/platforms/android-9/samples/native-plasma/jni/
H A Dplasma.c145 static uint16_t make565(int red, int green, int blue) argument
149 ((blue >> 3) & 0x001f) );
/development/ndk/platforms/android-5/include/GLES2/
H A Dgl2.h481 GL_APICALL void GL_APIENTRY glBlendColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
490 GL_APICALL void GL_APIENTRY glClearColor (GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
493 GL_APICALL void GL_APIENTRY glColorMask (GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);

Completed in 129 milliseconds