/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
blend.c | 532 * \param blue blue color component. 542 _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 550 tmp[2] = blue; 690 * \param blue whether to mask writing of the blue color component. 701 GLboolean blue, GLboolean alpha ) 711 red, green, blue, alpha); 718 tmp[BCOMP] = blue ? 0xff : 0x0; 733 ctx->Driver.ColorMask( ctx, red, green, blue, alpha ) [all...] |
/external/mesa3d/src/mesa/main/ |
blend.c | 532 * \param blue blue color component. 542 _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) 550 tmp[2] = blue; 690 * \param blue whether to mask writing of the blue color component. 701 GLboolean blue, GLboolean alpha ) 711 red, green, blue, alpha); 718 tmp[BCOMP] = blue ? 0xff : 0x0; 733 ctx->Driver.ColorMask( ctx, red, green, blue, alpha ) [all...] |
/frameworks/native/opengl/tools/glgen/specs/gles11/ |
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 )
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
oobe.css | 57 button.button-blue { 74 button.button-blue:hover { 82 button.button-blue:active {
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
DDSLoader.java | 505 byte blue = (byte) (((i & blueMask) >> blueCount)); 515 dataBuffer.put(red).put(green).put(blue); 517 dataBuffer.put(red).put(green).put(blue).put(alpha); 647 byte blue = (byte) (((i & blueMask) >> blueCount)); 657 dataBuffer.put(red).put(green).put(blue); 659 dataBuffer.put(red).put(green).put(blue).put(alpha);
|
/external/qemu/distrib/sdl-1.2.15/src/hermes/ |
x86p_32.asm | 468 mov bl,[esi+0] ; blue 492 mov bl,[esi+0] ; blue 556 mov bl,[esi+0] ; blue 584 mov ah,[esi+0] ; blue 605 mov ah,[esi+0] ; blue 670 mov ah,[esi+0] ; blue 698 mov bl,[esi+0] ; blue 719 mov bl,[esi+0] ; blue 781 mov bl,[esi+0] ; blue 810 mov ah,[esi+0] ; blue [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/ |
glapitemp.h | 138 KEYWORD1 void KEYWORD2 NAME(Color3b)(GLbyte red, GLbyte green, GLbyte blue) 140 (void) red; (void) green; (void) blue; 141 DISPATCH(Color3b, (red, green, blue), (F, "glColor3b(%d, %d, %d);\n", red, green, blue)); 150 KEYWORD1 void KEYWORD2 NAME(Color3d)(GLdouble red, GLdouble green, GLdouble blue) 152 (void) red; (void) green; (void) blue; 153 DISPATCH(Color3d, (red, green, blue), (F, "glColor3d(%f, %f, %f);\n", red, green, blue)); 162 KEYWORD1 void KEYWORD2 NAME(Color3f)(GLfloat red, GLfloat green, GLfloat blue) 164 (void) red; (void) green; (void) blue; [all...] |
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 183 public static final int BLUE = 0xff8080FF; 197 colorAnimator = ObjectAnimator.ofInt(this, "backgroundColor", RED, BLUE); 249 int blue = (int)(Math.random() * 255); local 250 int color = 0xff000000 | red << 16 | green << 8 | blue; 251 int darkColor = 0xff000000 | red/4 << 16 | green/4 << 8 | blue/4;
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
renderer9_utils.cpp | 43 gl::unorm<8>(color.blue), 174 DWORD ConvertColorMask(bool red, bool green, bool blue, bool alpha) 178 (blue ? D3DCOLORWRITEENABLE_BLUE : 0) |
|
Image9.cpp | 617 unsigned char blue = (rgb & 0x001F) << 3; local 618 dest[x + 0] = blue | (blue >> 5); 656 unsigned char blue = (argb & 0x001F) << 3; local 657 dest[x + 0] = blue | (blue >> 5); 675 unsigned char blue = (argb & 0x001F) << 3; local 677 dest[x + 0] = blue | (blue >> 5);
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_linetemp.h | 227 span.blue = ChanToFixed(vert0->color[2]); 231 span.blueStep = (ChanToFixed(vert1->color[2]) - span.blue ) / numPixels; 237 span.blue = ChanToFixed(vert1->color[2]);
|
s_span.h | 147 GLfixed blue, blueStep; member in struct:sw_span
|
/external/mesa3d/src/mesa/swrast/ |
s_linetemp.h | 227 span.blue = ChanToFixed(vert0->color[2]); 231 span.blueStep = (ChanToFixed(vert1->color[2]) - span.blue ) / numPixels; 237 span.blue = ChanToFixed(vert1->color[2]);
|
s_span.h | 147 GLfixed blue, blueStep; member in struct:sw_span
|
/packages/wallpapers/HoloSpiral/src/com/android/wallpaper/holospiral/ |
HoloSpiralRS.java | 257 float blue = Color.blue(color) / 255.0f; local 259 return new Float4(red, green, blue, alpha);
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
DiscretePathEffectTest.java | 69 // draw guide rectangle into blue channel (each segment must be completely inside this) 70 paint.setColor(Color.BLUE); 85 assertEquals(0xFF, Color.blue(pixel));
|
EmbossMaskFilterTest.java | 87 color += Color.red(pixel) + Color.green(pixel) + Color.blue(pixel);
|
/device/generic/goldfish/opengl/tests/gles_android_wrapper/ |
gles.cpp | 61 void glClearColor(GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha) 63 getDispatch()->glClearColor(red, green, blue, alpha); 76 void glColor4f(GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha) 78 getDispatch()->glColor4f(red, green, blue, alpha); 286 void glClearColorx(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha) 288 getDispatch()->glClearColorx(red, green, blue, alpha); 311 void glColor4ub(GLubyte red, GLubyte green, GLubyte blue, GLubyte alpha) 313 getDispatch()->glColor4ub(red, green, blue, alpha); 316 void glColor4x(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha) 318 getDispatch()->glColor4x(red, green, blue, alpha) [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/parser/ |
ll-star.rb | 30 * and look for blue tokens in the input window pane. :)
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/ |
xmesa.h | 124 * accum_blue_size - requested bits/blue accum values, or zero 329 * red, green, blue, alpha - color components in [0,1] 339 GLfloat blue,
|
/external/chromium_org/third_party/skia/include/core/ |
SkColor.h | 67 /** return the blue byte from a SkColor value */ 89 #define SK_ColorBLUE 0xFF0000FF //!< blue SkColor value 102 @param blue blue component value [0..255] 105 SK_API void SkRGBToHSV(U8CPU red, U8CPU green, U8CPU blue, SkScalar hsv[3]);
|
/external/mesa3d/src/mesa/drivers/x11/ |
xmesa.h | 124 * accum_blue_size - requested bits/blue accum values, or zero 329 * red, green, blue, alpha - color components in [0,1] 339 GLfloat blue,
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_video.h | 67 Uint32 blue; member in struct:ColourMasks
|
/external/skia/include/core/ |
SkColor.h | 67 /** return the blue byte from a SkColor value */ 89 #define SK_ColorBLUE 0xFF0000FF //!< blue SkColor value 102 @param blue blue component value [0..255] 105 SK_API void SkRGBToHSV(U8CPU red, U8CPU green, U8CPU blue, SkScalar hsv[3]);
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
TintFilter.java | 128 Color.blue(mTint) / 255f };
|