HomeSort by relevance Sort by last modified time
    Searched refs:red (Results 326 - 350 of 886) sorted by null

<<11121314151617181920>>

  /external/chromium_org/chrome/browser/ui/gtk/
gtk_theme_service.cc 243 frame_color->red = SkColorGetR(shifted) * ui::kSkiaToGDKMultiplier;
459 color.red = (text.red + (bg.red * kBgWeight)) / (1 + kBgWeight);
538 // Each pixel is made up of a red, green, and blue component; taking up
554 color->red = components[0] * 65535 / (255 * (kHeight - 4));
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/glapi/
glapitable.h 52 void (GLAPIENTRYP Color3b)(GLbyte red, GLbyte green, GLbyte blue); /* 9 */
54 void (GLAPIENTRYP Color3d)(GLdouble red, GLdouble green, GLdouble blue); /* 11 */
56 void (GLAPIENTRYP Color3f)(GLfloat red, GLfloat green, GLfloat blue); /* 13 */
58 void (GLAPIENTRYP Color3i)(GLint red, GLint green, GLint blue); /* 15 */
60 void (GLAPIENTRYP Color3s)(GLshort red, GLshort green, GLshort blue); /* 17 */
62 void (GLAPIENTRYP Color3ub)(GLubyte red, GLubyte green, GLubyte blue); /* 19 */
64 void (GLAPIENTRYP Color3ui)(GLuint red, GLuint green, GLuint blue); /* 21 */
66 void (GLAPIENTRYP Color3us)(GLushort red, GLushort green, GLushort blue); /* 23 */
68 void (GLAPIENTRYP Color4b)(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha); /* 25 */
70 void (GLAPIENTRYP Color4d)(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha); /* 27 *
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_triangle.c 83 span.red = ChanToFixed(v2->color[0]); \
307 dest[RCOMP] = span->red * (sample[RCOMP] + 1u) >> (FIXED_SHIFT + 8); \
313 dest[RCOMP] = ((CHAN_MAX - sample[ACOMP]) * span->red + \
325 dest[RCOMP] = ((CHAN_MAX - sample[RCOMP]) * span->red \
337 GLint rSum = FixedToInt(span->red) + (GLint) sample[RCOMP]; \
369 span->red += span->redStep; \
399 span->red += span->redStep; \
628 span->red += span->redStep; \
664 span->red += span->redStep; \
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_triangle.c 83 span.red = ChanToFixed(v2->color[0]); \
307 dest[RCOMP] = span->red * (sample[RCOMP] + 1u) >> (FIXED_SHIFT + 8); \
313 dest[RCOMP] = ((CHAN_MAX - sample[ACOMP]) * span->red + \
325 dest[RCOMP] = ((CHAN_MAX - sample[RCOMP]) * span->red \
337 GLint rSum = FixedToInt(span->red) + (GLint) sample[RCOMP]; \
369 span->red += span->redStep; \
399 span->red += span->redStep; \
628 span->red += span->redStep; \
664 span->red += span->redStep; \
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
YuvImageTest.java 380 int r = Color.red(actual) - Color.red(exp);
387 int r = Color.red(argb);
ComposeShaderTest.java 45 Color.GREEN, Color.RED, Shader.TileMode.CLAMP);
62 assertEquals(y, Color.red(pixel), TOLERANCE);
  /external/chromium_org/third_party/angle/src/libGLESv2/
Context.h 182 void setClearColor(float red, float green, float blue, float alpha);
206 void setBlendColor(float red, float green, float blue, float alpha);
247 void setColorMask(bool red, bool green, bool blue, bool alpha);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/
renderer11_utils.cpp 60 UINT8 ConvertColorMask(bool red, bool green, bool blue, bool alpha)
63 if (red)
409 vertex->r = color.red;
  /external/chromium_org/third_party/skia/src/gpu/gl/
GrGLNoOpInterface.h 16 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBlendColor(GrGLclampf red,
35 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLClearColor(GrGLclampf red,
42 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLColorMask(GrGLboolean red,
  /external/qemu/distrib/sdl-1.2.15/include/
SDL_video.h 424 extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
427 * Set the gamma translation table for the red, green, and blue channels
438 extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
449 extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
    [all...]
  /external/skia/src/gpu/gl/
GrGLNoOpInterface.h 16 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLBlendColor(GrGLclampf red,
35 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLClearColor(GrGLclampf red,
42 GrGLvoid GR_GL_FUNCTION_TYPE noOpGLColorMask(GrGLboolean red,
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 106 public void glClearColor(float red, float green, float blue, float alpha) {
108 mgl.glClearColor(red, green, blue, alpha);
112 public void glClearColorx(int red, int green, int blue, int alpha) {
114 mgl.glClearColorx(red, green, blue, alpha);
142 public void glColor4f(float red, float green, float blue, float alpha) {
144 mgl.glColor4f(red, green, blue, alpha);
148 public void glColor4x(int red, int green, int blue, int alpha) {
150 mgl.glColor4x(red, green, blue, alpha);
154 public void glColorMask(boolean red, boolean green, boolean blue,
157 mgl.glColorMask(red, green, blue, alpha)
    [all...]
  /prebuilts/tools/darwin-x86/sdl/include/SDL/
SDL_video.h 424 extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
427 * Set the gamma translation table for the red, green, and blue channels
438 extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
449 extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
    [all...]
  /prebuilts/tools/linux-x86/sdl/include/SDL/
SDL_video.h 424 extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
427 * Set the gamma translation table for the red, green, and blue channels
438 extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
449 extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
    [all...]
  /prebuilts/tools/windows/sdl/include/SDL/
SDL_video.h 424 extern DECLSPEC int SDLCALL SDL_SetGamma(float red, float green, float blue);
427 * Set the gamma translation table for the red, green, and blue channels
438 extern DECLSPEC int SDLCALL SDL_SetGammaRamp(const Uint16 *red, const Uint16 *green, const Uint16 *blue);
449 extern DECLSPEC int SDLCALL SDL_GetGammaRamp(Uint16 *red, Uint16 *green, Uint16 *blue);
    [all...]
  /sdk/emulator/opengl/host/libs/Translator/EGL/
EglX11Api.cpp 86 int bSize,red,green,blue,alpha,depth,stencil; local
116 IS_SUCCESS(glXGetFBConfigAttrib(dpy,*frmt,GLX_RED_SIZE,&red));
158 return new EglConfig(red,green,blue,alpha,caveat,configId,depth,level,pMaxWidth,pMaxHeight,
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
glapi_mapi_tmp_shared.h 23 void APIENTRY shared_dispatch_stub_9(GLbyte red, GLbyte green, GLbyte blue);
25 void APIENTRY shared_dispatch_stub_11(GLdouble red, GLdouble green, GLdouble blue);
27 void APIENTRY shared_dispatch_stub_13(GLfloat red, GLfloat green, GLfloat blue);
29 void APIENTRY shared_dispatch_stub_15(GLint red, GLint green, GLint blue);
31 void APIENTRY shared_dispatch_stub_17(GLshort red, GLshort green, GLshort blue);
33 void APIENTRY shared_dispatch_stub_19(GLubyte red, GLubyte green, GLubyte blue);
35 void APIENTRY shared_dispatch_stub_21(GLuint red, GLuint green, GLuint blue);
37 void APIENTRY shared_dispatch_stub_23(GLushort red, GLushort green, GLushort blue);
39 void APIENTRY shared_dispatch_stub_25(GLbyte red, GLbyte green, GLbyte blue, GLbyte alpha);
41 void APIENTRY shared_dispatch_stub_27(GLdouble red, GLdouble green, GLdouble blue, GLdouble alpha)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
BitmapPixels.java 40 // access the red component from a premultiplied color
42 // access the red component from a premultiplied color
44 // access the red component from a premultiplied color
46 // access the red component from a premultiplied color
74 int r = Color.red(c);
138 makeRamp(premultiplyColor(Color.RED), premultiplyColor(Color.GREEN),
  /external/chromium/chrome/browser/resources/options/
sync_setup_overlay.css 110 color: red;
130 color: red;
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/cpu/arm/filters/
FELightingNEON.h 115 floatArguments.colorRed = m_lightingColor.red();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
TextureGenerator.java 281 texres.red = (texres.red - 0.5f) * bacd.contrast + bacd.brightness;
282 if (texres.red < 0.0f) {
283 texres.red = 0.0f;
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xf86vmode.h 158 float red; /* Red Gamma value */ member in struct:__anon25121
289 unsigned short* /* red array */,
298 unsigned short* /* red array */,
  /frameworks/native/opengl/tools/glgen/specs/gles11/
GLES11Ext.spec 15 void glClearColorxOES ( GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha )
18 void glColor4xOES ( GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha )
  /hardware/ti/omap4xxx/kernel-headers/linux/
omapfb.h 200 struct fb_bitfield red; member in struct:omapfb_ovl_colormode
  /packages/apps/Contacts/src/com/android/contacts/widget/
TextHighlightingAnimation.java 165 color = Color.argb(mAlpha, Color.red(color), Color.green(color), Color.blue(color));

Completed in 1734 milliseconds

<<11121314151617181920>>