Searched defs:RGBA (Results 1 - 20 of 20) 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
165 //! get the swizzle used to expand texture data with a given channel order to RGBA form
168 //! get the swizzle used to narrow RGBA form data to native texture data with a given channel order
H A DtcuTexture.cpp305 case TextureFormat::RGBA: return 4;
558 case TextureFormat::RGBA:
607 return format.order == TextureFormat::RGBA || format.order == TextureFormat::BGRA;
619 return format.order == TextureFormat::RGBA || format.order == TextureFormat::BGRA;
725 static const TextureSwizzle RGBA = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_2, TextureSwizzle::CHANNEL_3 }}; local
742 case TextureFormat::RGBA: return RGBA;
749 case TextureFormat::sRGBA: return RGBA;
779 static const TextureSwizzle RGBA = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_2, TextureSwizzle::CHANNEL_3 }}; local
796 case TextureFormat::RGBA
[all...]
/external/skia/src/gpu/
H A DGrSwizzle.h19 GrSwizzle() { *this = RGBA(); }
67 static const GrSwizzle& RGBA() { function in class:GrSwizzle
90 return RGBA();
99 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/opencv3/modules/core/include/opencv2/core/
H A Dopengl.hpp292 RGBA = 0x1908 //!< Red, Green, Blue, Alpha enumerator in enum:cv::ogl::Texture2D::Format
/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/opencv3/3rdparty/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::__anon14977
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/opencv3/modules/java/generator/src/java/
H A Dandroid+CameraBridgeViewBase.java49 protected int mPreviewFormat = RGBA;
57 public static final int RGBA = 1; field in class:CameraBridgeViewBase
156 case RGBA:
163 Log.e(TAG, "Invalid frame format! Only RGBA and Gray Scale are supported!");
173 private int mPreviewFormat = RGBA;
184 * This method returns RGBA Mat with frame
/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
202 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon20496
273 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
396 // 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
202 WebPRGBABuffer RGBA; member in union:WebPDecBuffer::__anon20579
273 // stride of output_buffer.u.RGBA or output_buffer.u.YUVA, provided they remain
396 // E) Decoded image is now in config.output (and config.output.u.RGBA)
/external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
H A DvktSpvAsmInstructionTests.cpp74 using tcu::RGBA;
3220 RGBA inputColors[4];
3221 RGBA outputColors[4];
3228 InstanceContext (const RGBA (&inputs)[4], const RGBA (&outputs)[4], const map<string, string>& testCodeFragments_, const StageToSpecConstantMap& specConstants_) member in struct:vkt::SpirVAssembly::__anon3746::InstanceContext
3284 void getDefaultColors (RGBA (&colors)[4])
3286 colors[0] = RGBA::white();
3287 colors[1] = RGBA::red();
3288 colors[2] = RGBA::green();
3289 colors[3] = RGBA
[all...]
/external/opencv3/modules/core/src/
H A Dgl_core_3_1.hpp384 RGBA = 0x1908, enumerator in enum:gl::__anon15313
/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 601 milliseconds