Searched defs:blue (Results 26 - 50 of 140) sorted by relevance

123456

/external/chromium_org/third_party/freetype/src/sfnt/
H A Dpngshim.c74 unsigned int blue = base[2]; local
81 blue = multiply_alpha( alpha, blue );
84 base[0] = blue;
109 unsigned int blue = base[2]; local
112 base[0] = blue;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dclear.c65 * \param blue blue color component.
75 _mesa_ClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) argument
83 tmp[2] = blue;
H A Daccum.c43 _mesa_ClearAccum( GLfloat red, GLfloat green, GLfloat blue, GLfloat alpha ) argument
51 tmp[2] = CLAMP( blue, -1.0F, 1.0F );
H A Dblend.c532 * \param blue blue color component.
542 _mesa_BlendColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) argument
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, alph
700 _mesa_ColorMask( GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ) argument
741 _mesa_ColorMaskIndexed( GLuint buf, GLboolean red, GLboolean green, GLboolean blue, GLboolean alpha ) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red; member in struct:__anon13734
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon13735
46 GLubyte blue, green, red, alpha;
/external/freetype/src/sfnt/
H A Dpngshim.c74 unsigned int blue = base[2]; local
81 blue = multiply_alpha( alpha, blue );
84 base[0] = blue;
109 unsigned int blue = base[2]; local
112 base[0] = blue;
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
H A DHDRLoader.java64 public static void convertFloatToRGBE(byte[] rgbe, float red, float green, float blue){ argument
67 if (blue > max) max = blue;
75 rgbe[2] = (byte) ((blue / divider) * 255.0);
/external/libpng/contrib/gregbook/
H A Dreadpng.c154 int readpng_get_bgcolor(uch *red, uch *green, uch *blue) argument
173 * and blue values, regardless of color_type: */
184 *blue = pBackground->blue >> 8;
187 *red = *green = *blue = pBackground->gray? 255 : 0;
189 *red = *green = *blue = (255/3) * pBackground->gray;
191 *red = *green = *blue = (255/15) * pBackground->gray;
195 *blue = (uch)pBackground->blue;
/external/mesa3d/src/mesa/main/
H A Dclear.c65 * \param blue blue color component.
75 _mesa_ClearColor( GLclampf red, GLclampf green, GLclampf blue, GLclampf alpha ) argument
83 tmp[2] = blue;
/external/mesa3d/src/mesa/tnl_dd/
H A Dt_dd_vertex.h36 GLubyte alpha, blue, green, red; member in struct:__anon24219
38 GLubyte red, green, blue, alpha;
44 GLubyte alpha, red, green, blue; member in struct:__anon24220
46 GLubyte blue, green, red, alpha;
/external/skia/gm/
H A Dtestimagefilters.cpp62 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf); local
63 SkAutoUnref aur4(blue);
65 return new SkMergeImageFilter(compose, blue);
79 SkImageFilter* blue = SkColorFilterImageFilter::Create(cf); local
80 SkAutoUnref aur4(blue);
82 return new SkMergeImageFilter(compose, blue);
/external/chromium_org/third_party/WebKit/Source/platform/graphics/
H A DColor.h103 int blue() const { return blueChannel(m_color); } function in class:WebCore::Color
163 blend(premultFrom.blue(), premultTo.blue(), progress),
171 blend(from.blue(), to.blue(), progress),
H A DGradient.h65 float blue; member in struct:WebCore::Gradient::ColorStop
68 ColorStop() : stop(0), red(0), green(0), blue(0), alpha(0) { }
69 ColorStop(float s, float r, float g, float b, float a) : stop(s), red(r), green(g), blue(b), alpha(a) { }
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFEColorMatrix.cpp76 inline void matrix(float& red, float& green, float& blue, float& alpha, const Vector<float>& values) argument
78 float r = values[0] * red + values[1] * green + values[2] * blue + values[3] * alpha + values[4] * 255;
79 float g = values[5] * red + values[6] * green + values[7] * blue + values[8] * alpha + values[9] * 255;
80 float b = values[10] * red + values[11] * green + values[12] * blue + values[13] * alpha + values[14] * 255;
81 float a = values[15] * red + values[16] * green + values[17] * blue + values[18] * alpha + values[19] * 255;
85 blue = b;
89 inline void saturateAndHueRotate(float& red, float& green, float& blue, const float* components) argument
91 float r = red * components[0] + green * components[1] + blue * components[2];
92 float g = red * components[3] + green * components[4] + blue * components[5];
93 float b = red * components[6] + green * components[7] + blue * component
100 luminance(float& red, float& green, float& blue, float& alpha) argument
122 float blue = pixelArray->item(pixelByteOffset + 2); local
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Drenderer9_utils.cpp43 gl::unorm<8>(color.blue),
174 DWORD ConvertColorMask(bool red, bool green, bool blue, bool alpha) argument
178 (blue ? D3DCOLORWRITEENABLE_BLUE : 0) |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c48 unsigned char blue; member in struct:stw_pf_color_info::__anon13376
54 unsigned char blue; member in struct:stw_pf_color_info::__anon13377
138 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 2) == color->bits.blue);
165 pfi->pfd.cColorBits = color->bits.red + color->bits.green + color->bits.blue + color->bits.alpha;
170 pfi->pfd.cBlueBits = color->bits.blue;
171 pfi->pfd.cBlueShift = color->shift.blue;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_crtc.c154 crtc_gamma_set(xf86CrtcPtr crtc, CARD16 * red, CARD16 * green, CARD16 * blue, argument
160 drmModeCrtcSetGamma(ms->fd, crtcp->drm_crtc->crtc_id, size, red, green, blue);
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_span.h147 GLfixed blue, blueStep; member in struct:sw_span
H A Ds_texcombine.c167 GLfloat blue = textureUnit->EnvColor[2]; local
170 ASSIGN_4V(c[i], red, green, blue, alpha);
/external/chromium_org/third_party/qcms/src/
H A Dqcms.h129 qcms_CIE_xyY blue; member in struct:__anon14287
/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawColor.cpp27 SkScalar blue = SkIntToScalar(SkColorGetB(color)); local
28 SkScalar min = SkMinScalar(SkMinScalar(red, green), blue);
29 SkScalar value = SkMaxScalar(SkMaxScalar(red, green), blue);
42 hue = SkScalarMul(green - blue, part60);
47 hue = 120 * SK_Scalar1 + SkScalarMul(blue - red, part60);
48 else // blue == value
67 SkScalar blue SK_INIT_TO_AVOID_WARNING;
69 red = green = blue = value;
79 case 0: red = value; green = t; blue = p; break;
80 case 1: red = q; green = value; blue
[all...]
/external/chromium_org/third_party/skia/src/images/
H A DSkImageDecoder_libico.cpp217 int blue, green, red; local
224 blue = readByte(buf, begin + 4*j);
227 colors[j] = SkPackARGB32(0xFF, red & 0xFF, green & 0xFF, blue & 0xFF);
357 int blue = readByte(buf, xorOffset + 3*pixelNo); local
363 *address = SkPreMultiplyARGB(alpha, red, green, blue);
371 int blue = readByte(buf, xorOffset + 4*pixelNo); local
379 *address = SkPreMultiplyARGB(alpha, red, green, blue);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/
H A DTexturePixel.java19 public float intensity, red, green, blue, alpha; field in class:TexturePixel
31 this.blue = pixel.blue;
44 this.blue = colorRGBA.b;
58 * the blue value
64 this.blue = b;
81 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
103 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
116 this.blue = pixelValue >= 0 ? pixelValue / 255.0f : 1.0f - (~pixelValue) / 255.0f;
123 this.blue
[all...]
/external/mesa3d/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c48 unsigned char blue; member in struct:stw_pf_color_info::__anon23861
54 unsigned char blue; member in struct:stw_pf_color_info::__anon23862
138 assert(util_format_get_component_bits(color->format, UTIL_FORMAT_COLORSPACE_RGB, 2) == color->bits.blue);
165 pfi->pfd.cColorBits = color->bits.red + color->bits.green + color->bits.blue + color->bits.alpha;
170 pfi->pfd.cBlueBits = color->bits.blue;
171 pfi->pfd.cBlueShift = color->shift.blue;
/external/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_crtc.c154 crtc_gamma_set(xf86CrtcPtr crtc, CARD16 * red, CARD16 * green, CARD16 * blue, argument
160 drmModeCrtcSetGamma(ms->fd, crtcp->drm_crtc->crtc_id, size, red, green, blue);

Completed in 985 milliseconds

123456