HomeSort by relevance Sort by last modified time
    Searched refs:green (Results 226 - 250 of 268) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/webkit/WebCore/html/canvas/
WebGLRenderingContext.cpp 271 void WebGLRenderingContext::blendColor(double red, double green, double blue, double alpha)
273 m_context->blendColor(red, green, blue, alpha);
406 void WebGLRenderingContext::colorMask(bool red, bool green, bool blue, bool alpha)
408 m_context->colorMask(red, green, blue, alpha);
    [all...]
  /external/webkit/WebCore/rendering/
SVGInlineTextBox.cpp 501 color = Color(0xff - color.red(), 0xff - color.green(), 0xff - color.blue());
InlineTextBox.cpp 588 c = Color(0xff - c.red(), 0xff - c.green(), 0xff - c.blue());
    [all...]
RenderBoxModelObject.cpp     [all...]
  /frameworks/base/core/jni/
android_opengl_GLES11Ext.cpp 515 /* void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha ) */
518 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
521 (GLclampx)green,
587 /* void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha ) */
590 (JNIEnv *_env, jobject _this, jint red, jint green, jint blue, jint alpha) {
593 (GLfixed)green,
    [all...]
android_opengl_GLES20.cpp 236 /* void glBlendColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
239 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
242 (GLclampf)green,
356 /* void glClearColor ( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) */
359 (JNIEnv *_env, jobject _this, jfloat red, jfloat green, jfloat blue, jfloat alpha) {
362 (GLclampf)green,
386 /* void glColorMask ( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ) */
389 (JNIEnv *_env, jobject _this, jboolean red, jboolean green, jboolean blue, jboolean alpha) {
392 (GLboolean)green,
    [all...]
android_opengl_GLES11.cpp 313 /* void glColor4ub ( GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha ) */
316 (JNIEnv *_env, jobject _this, jbyte red, jbyte green, jbyte blue, jbyte alpha) {
319 (GLubyte)green,
    [all...]
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 101 blendFunc(anim, premultFrom.green(), premultTo.green(), progress),
    [all...]
  /external/quake/quake/src/QW/scitech/include/
mgraph.h 660 uchar green; /* Green component of color */ member in struct:__anon6909
675 m_int greenPos,greenAdjust; /* Green position and adjustment */
824 char greenMaskSize; /* Size of direct color green mask */
825 char greenFieldPosition; /* Bit posn of lsb of green mask */
    [all...]
  /external/quake/quake/src/WinQuake/scitech/INCLUDE/
MGRAPH.H 660 uchar green; /* Green component of color */ member in struct:__anon7208
675 m_int greenPos,greenAdjust; /* Green position and adjustment */
824 char greenMaskSize; /* Size of direct color green mask */
825 char greenFieldPosition; /* Bit posn of lsb of green mask */
    [all...]
  /external/bison/src/
vcg.c 221 case green: return "green";
  /external/libpng/
pngset.c 868 (int)trans_values->green > sample_max ||
    [all...]
pngtest.c     [all...]
  /external/quake/quake/src/QW/client/
vid_x.c 626 colors[i].green = palette[i*3+1] * 257;
  /external/quake/quake/src/WinQuake/
vid_sunx.cpp 833 colors[i].green = vid_gamma[palette[i*3+1]] * 257;
vid_sunxil.cpp 726 colors[i].green = vid_gamma[palette[i*3+1]] * 257;
vid_x.cpp 701 colors[i].green = palette[i*3+1] * 257;
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 355 SkColor c = SkColorSetARGB(color.alpha(), color.red(), color.green(), color.blue());
  /external/webkit/WebCore/platform/graphics/openvg/
PainterOpenVG.cpp 88 vgColor = (vgColor << 8) | color.green();
  /frameworks/base/tools/aapt/
Images.cpp 809 rgbPalette[idx].green = (png_byte) ((col >> 16) & 0xff);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/io/
ObjectOutputStreamTest.java 480 red, blue, green enum constant in enum:ObjectOutputStreamTest.WriteReplaceObject.Color
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
GLRootView.java 579 gl.glColor4f(Color.red(color) * alpha, Color.green(color) * alpha,
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5video.c     [all...]
  /external/webkit/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarView.java 2436 int green = (color & 0x0000ff00) >> 8; local
    [all...]

Completed in 467 milliseconds

1 2 3 4 5 6 7 8 91011