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

/external/deqp/framework/common/
H A DtcuRGBA.cpp31 RGBA::RGBA (const Vec4& v) function in class:tcu::RGBA
40 Vec4 RGBA::toVec (void) const
48 IVec4 RGBA::toIVec (void) const
53 RGBA computeAbsDiffMasked (RGBA a, RGBA b, deUint32 cmpMask)
62 if (cmpMask & RGBA::RED_MASK)
64 int ra = (aPacked >> RGBA::RED_SHIFT) & 0xFF;
65 int rb = (bPacked >> 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.hpp53 RGBA, enumerator in enum:tcu::TextureFormat::ChannelOrder
170 //! get the swizzle used to expand texture data with a given channel order to RGBA form
173 //! get the swizzle used to narrow RGBA form data to native texture data with a given channel order
H A DtcuTexture.cpp544 case TextureFormat::RGBA:
593 return format.order == TextureFormat::RGBA || format.order == TextureFormat::BGRA;
605 return format.order == TextureFormat::RGBA || format.order == TextureFormat::BGRA;
664 case TextureFormat::RGBA: return 4;
781 static const TextureSwizzle RGBA = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_2, TextureSwizzle::CHANNEL_3 }}; local
798 case TextureFormat::RGBA: return RGBA;
805 case TextureFormat::sRGBA: return RGBA;
835 static const TextureSwizzle RGBA = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_2, TextureSwizzle::CHANNEL_3 }}; local
852 case TextureFormat::RGBA
[all...]
/external/skia/include/private/
H A DGrSwizzle.h45 GrSwizzle() { *this = RGBA(); }
112 static GrSwizzle RGBA() { return GrSwizzle("rgba"); } function in class:GrSwizzle
121 return RGBA();
130 return RGBA();
/external/skqp/include/private/
H A DGrSwizzle.h45 GrSwizzle() { *this = RGBA(); }
112 static GrSwizzle RGBA() { return GrSwizzle("rgba"); } function in class:GrSwizzle
121 return RGBA();
130 return RGBA();
/external/webrtc/webrtc/modules/desktop_capture/win/
H A Dcursor.cc29 #define RGBA(r, g, b, a) \ macro
37 #define RGBA(r, g, b, a) \
48 const uint32_t kPixelRgbaBlack = RGBA(0, 0, 0, 0xff);
49 const uint32_t kPixelRgbaWhite = RGBA(0xff, 0xff, 0xff, 0xff);
50 const uint32_t kPixelRgbaTransparent = RGBA(0, 0, 0, 0);
/external/mesa3d/src/intel/vulkan/
H A Danv_formats.c42 #define RGBA _ISL_SWIZZLE(RED, GREEN, BLUE, ALPHA) macro
53 swiz_fmt(__vk_fmt, __hw_fmt, RGBA)
285 * this by switching them over to RGBX or RGBA formats under the
414 * RGBA formats behind-the-scenes. This works fine for textures
/external/deqp/modules/gles3/functional/
H A Des3fShaderMetamorphicTests.cpp165 bool same = tcu::pixelThresholdCompare(log, "Result", "Image comparison result", img, refImg, tcu::RGBA(0,0,0,0), tcu::COMPARE_LOG_RESULT);
173 const tcu::RGBA threshold = tcu::RGBA(1,1,1,1) + m_context.getRenderTarget().getPixelFormat().getColorThreshold();
264 SanityPixel (float xRelative, float yRelative, tcu::Vec4 RGBA);
267 SanityPixel::SanityPixel (float xRelative, float yRelative, tcu::Vec4 RGBA) argument
270 , m_RGBA (RGBA)
284 tcu::Vec4 RGBA = img.getPixel(x, y, depth); local
285 tcu::Vec4 diff = abs(RGBA - sanPix.m_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
1278 bqs->base_format[i] = RGBA;
/external/webp/include/webp/
H A Ddecode.h48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
138 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
139 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
143 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
180 struct WebPRGBABuffer { // view as RGBA
181 uint8_t* rgba; // pointer to RGBA samples
205 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon30380
276 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
400 // E) Decoded image is now in config.output (and config.output.u.RGBA)
/external/webp/src/webp/
H A Ddecode.h48 // Decodes WebP images pointed to by 'data' and returns RGBA samples, along
138 // RGBA-4444 and RGB-565 colorspaces are represented by following byte-order:
139 // RGBA-4444: [r3 r2 r1 r0 g3 g2 g1 g0], [b3 b2 b1 b0 a3 a2 a1 a0], ...
143 // RGBA-4444: [b3 b2 b1 b0 a3 a2 a1 a0], [r3 r2 r1 r0 g3 g2 g1 g0], ...
180 struct WebPRGBABuffer { // view as RGBA
181 uint8_t* rgba; // pointer to RGBA samples
205 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon30473
276 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
400 // E) Decoded image is now in config.output (and config.output.u.RGBA)
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmGraphicsShaderTestUtil.hpp254 tcu::RGBA inputColors[4];
255 tcu::RGBA outputColors[4];
282 InstanceContext (const tcu::RGBA (&inputs)[4], member in struct:vkt::SpirVAssembly::InstanceContext
283 const tcu::RGBA (&outputs)[4],
337 void getDefaultColors (tcu::RGBA (&colors)[4]); member in namespace:vkt::SpirVAssembly
339 void getHalfColorsFullAlpha (tcu::RGBA (&colors)[4]); member in namespace:vkt::SpirVAssembly
341 void getInvertedDefaultColors (tcu::RGBA (&colors)[4]); member in namespace:vkt::SpirVAssembly
357 const tcu::RGBA (&inputColors)[4],
358 const tcu::RGBA (&outputColors)[4],
386 tcu::RGBA (
[all...]
H A DvktSpvAsmGraphicsShaderTestUtil.cpp51 using tcu::RGBA;
147 case 4: co = tcu::TextureFormat::RGBA; break;
227 InstanceContext::InstanceContext (const RGBA (&inputs)[4], member in class:vkt::SpirVAssembly::InstanceContext
228 const RGBA (&outputs)[4],
306 void getDefaultColors (RGBA (&colors)[4])
308 colors[0] = RGBA::white();
309 colors[1] = RGBA::red();
310 colors[2] = RGBA::green();
311 colors[3] = RGBA::blue();
314 void getHalfColorsFullAlpha (RGBA (
[all...]
/external/python/cpython2/Lib/plat-irix5/
H A DCL_old.py31 RGBA = 2 variable
58 elif f in (RGBX, RGBA):
78 elif f == RGBA:
79 return 'RGBA'
/external/robolectric/v3/runtime/
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...

Completed in 471 milliseconds