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

12

/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/tools/emulator/opengl/tests/gles_android_wrapper/
H A Dgles.cpp61 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) argument
63 getDispatch()->glClearColor(red, green, blue, alpha);
76 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) argument
78 getDispatch()->glColor4f(red, green, blue, alpha);
286 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
288 getDispatch()->glClearColorx(red, green, blue, alpha);
311 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) argument
313 getDispatch()->glColor4ub(red, green, blue, alpha);
316 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
318 getDispatch()->glColor4x(red, green, blue, alph
321 glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) argument
851 glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
866 glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed 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/tools/emulator/opengl/system/GLESv1_enc/
H A Dgl_enc.h25 void glClearColor_enc(void *self , GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
28 void glColor4f_enc(void *self , GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
70 void glClearColorx_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
74 void glColor4ub_enc(void *self , GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
75 void glColor4x_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
76 void glColorMask_enc(void *self , GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
200 void glClearColorxOES_enc(void *self , GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
204 void glColor4xOES_enc(void *self , GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
H A Dgl_entry.cpp10 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha);
13 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha);
55 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
59 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha);
60 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
61 void glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha);
185 void glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha);
189 void glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha);
315 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) argument
318 ctx->glClearColor(ctx, red, green, blue, alph
333 glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) argument
585 glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
609 glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) argument
615 glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
621 glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) argument
1369 glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
1393 glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
[all...]
/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);
/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) );

Completed in 365 milliseconds

12