Searched defs:red (Results 26 - 29 of 29) sorted by relevance

12

/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java290 float red,
297 int red,
320 float red,
327 int red,
334 boolean red,
289 glClearColor( float red, float green, float blue, float alpha ) argument
296 glClearColorx( int red, int green, int blue, int alpha ) argument
319 glColor4f( float red, float green, float blue, float alpha ) argument
326 glColor4x( int red, int green, int blue, int alpha ) argument
333 glColorMask( boolean red, boolean green, boolean blue, boolean alpha ) argument
/frameworks/base/core/jni/
H A Dcom_google_android_gles_jni_GLImpl.cpp319 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
322 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
324 (GLclampf)red,
331 /* void glClearColorx ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
334 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
336 (GLclampx)red,
379 /* void glColor4f ( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) */
382 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
384 (GLfloat)red,
391 /* void glColor4x ( GLfixed red, GLfixe
321 android_glClearColor__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
333 android_glClearColorx__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
381 android_glColor4f__FFFF(JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) argument
393 android_glColor4x__IIII(JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) argument
405 android_glColorMask__ZZZZ(JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) argument
4344 android_glColor4ub__BBBB(JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) argument
[all...]
/frameworks/base/opengl/java/android/opengl/
H A DGLES20.java385 // C function void glBlendColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
388 float red,
453 // C function void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha )
456 float red,
474 // C function void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha )
477 boolean red,
387 glBlendColor( float red, float green, float blue, float alpha ) argument
455 glClearColor( float red, float green, float blue, float alpha ) argument
476 glColorMask( boolean red, boolean green, boolean blue, boolean alpha ) argument
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_api.cpp272 void GLTrace_glBlendColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { argument
278 // copy argument red
282 arg_red->add_floatvalue(red);
305 glContext->hooks->gl.glBlendColor(red, green, blue, alpha);
618 void GLTrace_glClearColor(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) { argument
624 // copy argument red
628 arg_red->add_floatvalue(red);
651 glContext->hooks->gl.glClearColor(red, green, blue, alpha);
720 void GLTrace_glColorMask(GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha) { argument
726 // copy argument red
15855 GLTrace_glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) argument
16963 GLTrace_glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
17100 GLTrace_glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) argument
17146 GLTrace_glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
19562 GLTrace_glClearColorxOES(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) argument
19671 GLTrace_glColor4xOES(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) argument
[all...]

Completed in 4252 milliseconds

12