Searched defs:RGBA (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/chrome/utility/cloud_print/
H A Dbitmap_image.h18 RGBA, enumerator in enum:cloud_print::BitmapImage::Colorspace
/external/deqp/framework/common/
H A DtcuRGBA.cpp30 const RGBA RGBA::red (0xFF, 0x0, 0x0, 0xFF);
31 const RGBA RGBA::green (0x0, 0xFF, 0x0, 0xFF);
32 const RGBA RGBA::blue (0x0, 0x0, 0xFF, 0xFF);
33 const RGBA RGBA::gray (0x80, 0x80, 0x80, 0xFF);
34 const RGBA RGBA
37 RGBA::RGBA (const Vec4& v) function in class:tcu::RGBA
[all...]
H A DtcuRGBA.hpp38 class RGBA class in namespace:tcu
57 RGBA (void) { m_value = 0; } function in class:tcu::RGBA
59 RGBA (int r, int g, int b, int a) function in class:tcu::RGBA
68 explicit RGBA (deUint32 val) function in class:tcu::RGBA
73 explicit RGBA (const Vec4& v);
85 bool isBelowThreshold (RGBA thr) const { return (getRed() <= thr.getRed()) && (getGreen() <= thr.getGreen()) && (getBlue() <= thr.getBlue()) && (getAlpha() <= thr.getAlpha()); }
87 static RGBA fromBytes (const deUint8* bytes) { return RGBA(bytes[0], bytes[1], bytes[2], bytes[3]); }
92 bool operator== (const RGBA& v) const { return (m_value == v.m_value); }
93 bool operator!= (const RGBA
[all...]
H A DtcuTexture.hpp52 RGBA, enumerator in enum:tcu::TextureFormat::ChannelOrder
H A DtcuTexture.cpp139 static const Channel RGBA[] = { CHANNEL_0, CHANNEL_1, CHANNEL_2, CHANNEL_3 }; local
156 case TextureFormat::RGBA: return RGBA;
160 case TextureFormat::sRGBA: return RGBA;
180 static const int RGBA[] = { 0, 1, 2, 3 }; local
197 case TextureFormat::RGBA: return RGBA;
201 case TextureFormat::sRGBA: return RGBA;
247 case TextureFormat::RGBA: return 4;
448 DE_ASSERT(order == RGB || order == RGBA);
[all...]
/external/chromium_org/third_party/webrtc/modules/desktop_capture/win/
H A Dcursor.cc30 #define RGBA(r, g, b, a) \ macro
38 #define RGBA(r, g, b, a) \
49 const uint32_t kPixelRgbaBlack = RGBA(0, 0, 0, 0xff);
50 const uint32_t kPixelRgbaWhite = RGBA(0xff, 0xff, 0xff, 0xff);
51 const uint32_t kPixelRgbaTransparent = RGBA(0, 0, 0, 0);
/external/chromium_org/printing/
H A Dprint_job_constants.h126 RGBA, enumerator in enum:printing::ColorModel
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasStyle.h58 String color() const { ASSERT(m_type == RGBA || m_type == CMYKA); return Color(m_rgba).serialized(); }
72 enum Type { RGBA, CMYKA, Gradient, ImagePattern, CurrentColor, CurrentColorWithOverrideAlpha }; enumerator in enum:blink::FINAL::Type
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dimageformats.h523 unsigned short RGBA; member in struct:rx::R5G5B5A1
527 dst->alpha = gl::normalizedToFloat<1>(gl::getShiftedData<1, 15>(src->RGBA));
528 dst->blue = gl::normalizedToFloat<5>(gl::getShiftedData<5, 10>(src->RGBA));
529 dst->green = gl::normalizedToFloat<5>(gl::getShiftedData<5, 5>(src->RGBA));
530 dst->red = gl::normalizedToFloat<5>(gl::getShiftedData<5, 0>(src->RGBA));
535 dst->RGBA = gl::shiftData<1, 15>(gl::floatToNormalized<1, unsigned short>(src->alpha)) |
543 dst->RGBA = gl::shiftData<1, 15>(gl::average(gl::getShiftedData<1, 15>(src1->RGBA), gl::getShiftedData<1, 15>(src2->RGBA))) |
544 gl::shiftData<5, 10>(gl::average(gl::getShiftedData<5, 10>(src1->RGBA), g
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c47 RGBA, enumerator in enum:format
874 * to the tile cache. The tile cache always stores RGBA colors but if
1274 bqs->base_format[i] = RGBA;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_quad_blend.c47 RGBA, enumerator in enum:format
874 * to the tile cache. The tile cache always stores RGBA colors but if
1274 bqs->base_format[i] = RGBA;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DColor.js118 return new WebInspector.Color(rgba, WebInspector.Color.Format.RGBA, text);
292 case WebInspector.Color.Format.RGBA:
347 * @return {!DOMAgent.RGBA}
642 RGBA: "rgba",
/external/chromium_org/third_party/libwebp/webp/
H A Ddecode.h48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
135 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
136 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
140 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
177 struct WebPRGBABuffer { // view as RGBA
178 uint8_t* rgba; // pointer to RGBA samples
199 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon13308
270 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
393 // E) Decoded image is now in config.output (and config.output.u.RGBA)
/external/webp/include/webp/
H A Ddecode.h48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
135 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
136 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
140 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
177 struct WebPRGBABuffer { // view as RGBA
178 uint8_t* rgba; // pointer to RGBA samples
199 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon33325
270 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
393 // E) Decoded image is now in config.output (and config.output.u.RGBA)
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 436 milliseconds