Home
last modified time | relevance | path

Searched refs:ARGB (Results 1 – 21 of 21) sorted by relevance

/external/libyuv/files/unit_test/
Dconvert_test.cc565 TESTPLANARTOB(I420, 2, 2, ARGB, 4, 4, 1, 2, ARGB, 4)
566 TESTPLANARTOB(J420, 2, 2, ARGB, 4, 4, 1, 2, ARGB, 4)
567 TESTPLANARTOB(J420, 2, 2, ABGR, 4, 4, 1, 2, ARGB, 4)
568 TESTPLANARTOB(H420, 2, 2, ARGB, 4, 4, 1, 2, ARGB, 4)
569 TESTPLANARTOB(H420, 2, 2, ABGR, 4, 4, 1, 2, ARGB, 4)
570 TESTPLANARTOB(I420, 2, 2, BGRA, 4, 4, 1, 2, ARGB, 4)
571 TESTPLANARTOB(I420, 2, 2, ABGR, 4, 4, 1, 2, ARGB, 4)
572 TESTPLANARTOB(I420, 2, 2, RGBA, 4, 4, 1, 2, ARGB, 4)
573 TESTPLANARTOB(I420, 2, 2, RAW, 3, 3, 1, 2, ARGB, 4)
574 TESTPLANARTOB(I420, 2, 2, RGB24, 3, 3, 1, 2, ARGB, 4)
[all …]
Dplanar_test.cc1040 TESTTERP(ARGB, 4, 1, ARGB, 4, 1, benchmark_width_ - 1, TERP, _Any, +, 0) \
1041 TESTTERP(ARGB, 4, 1, ARGB, 4, 1, benchmark_width_, TERP, _Unaligned, +, 1) \
1042 TESTTERP(ARGB, 4, 1, ARGB, 4, 1, benchmark_width_, TERP, _Invert, -, 0) \
1043 TESTTERP(ARGB, 4, 1, ARGB, 4, 1, benchmark_width_, TERP, _Opt, +, 0)
/external/libyuv/files/docs/
Dformats.md7 …rted by libyuv - I420 and ARGB. All YUV formats can be converted to/from I420. All RGB formats c…
9 Filtering functions such as scaling and planar functions work on I420 and/or ARGB.
112 # The ARGB FOURCC
114 There are 4 ARGB layouts - ARGB, BGRA, ABGR and RGBA. ARGB is most common by far, used for screen …
118 A fourcc provided by capturer, can be thought of string, e.g. "ARGB".
124 So the "ARGB" string, read as an uint32, is
128 If you were to read ARGB pixels as uint32's, the alpha would be in the high byte, and the blue in t…
132 All formats can be converted to/from ARGB.
134 Most 'planar_functions' work on ARGB (e.g. ARGBBlend).
140 ARGBBlend expects preattenuated ARGB. The R,G,B are premultiplied by alpha. Other functions don't …
Drotation.md3 … allow rotation of any format. Optimized functionality is supported for I420, ARGB, NV12 and NV21.
/external/deqp/modules/gles31/functional/
Des31fTextureLevelStateQueryTests.cpp1253 format.order == tcu::TextureFormat::ARGB || in getMinimumComponentResolution()
1265 format.order == tcu::TextureFormat::ARGB || in getMinimumComponentResolution()
1276 format.order == tcu::TextureFormat::ARGB || in getMinimumComponentResolution()
1286 format.order == tcu::TextureFormat::ARGB || in getMinimumComponentResolution()
1405 format.order == tcu::TextureFormat::ARGB || in getComponentType()
1417 format.order == tcu::TextureFormat::ARGB || in getComponentType()
1428 format.order == tcu::TextureFormat::ARGB || in getComponentType()
1438 format.order == tcu::TextureFormat::ARGB || in getComponentType()
/external/pdfium/core/fxge/win32/
Dfx_win32_gdipext.cpp218 typedef GpStatus(WINGDIPAPI* FuncType_GdipCreateSolidFill)(ARGB color,
224 typedef GpStatus(WINGDIPAPI* FuncType_GdipCreatePen1)(ARGB color,
460 CallFunc(GdipCreateSolidFill)((ARGB)argb, &solidBrush); in _GdipCreateBrush()
539 CallFunc(GdipCreateSolidFill)((ARGB)argb, &solidBrush); in OutputImageMask()
840 CallFunc(GdipCreateSolidFill)((ARGB)fill_argb, (GpSolidFill**)pBrush); in GdipCreateBrush()
985 CallFunc(GdipCreatePen1)((ARGB)argb, width, UnitWorld, &pPen); in _GdipCreatePen()
/external/mesa3d/src/intel/blorp/
Dblorp_clear.c384 const struct isl_swizzle ARGB = ISL_SWIZZLE(ALPHA, RED, GREEN, BLUE); in blorp_clear() local
385 clear_color = swizzle_color_value(clear_color, ARGB); in blorp_clear()
/external/webrtc/talk/session/media/
Dplanarfunctions_unittest.cc759 TEST_YUVTORGB(I420, ARGB, libyuv::kJpegYuv420, 3., 2);
765 TEST_YUVTORGB(I422, ARGB, libyuv::kJpegYuv422, 3., 2);
767 TEST_YUVTORGB(I444, ARGB, libyuv::kJpegYuv444, 3., 3);
/external/deqp/framework/common/
DtcuTexture.cpp545 case TextureFormat::ARGB: in isColorOrder()
596 return format.order == TextureFormat::ARGB; in isValid()
665 case TextureFormat::ARGB: return 4; in getNumUsedChannels()
784 …static const TextureSwizzle ARGB = {{ TextureSwizzle::CHANNEL_1, TextureSwizzle::CHANNEL_2, Text… in getChannelReadSwizzle() local
799 case TextureFormat::ARGB: return ARGB; in getChannelReadSwizzle()
838 …static const TextureSwizzle ARGB = {{ TextureSwizzle::CHANNEL_3, TextureSwizzle::CHANNEL_0, Text… in getChannelWriteSwizzle() local
853 case TextureFormat::ARGB: return ARGB; in getChannelWriteSwizzle()
1025 DE_ASSERT(m_format.order == TextureFormat::ARGB); in getPixel()
1119 DE_ASSERT(m_format.order == TextureFormat::ARGB); in getPixelInt()
DtcuTexture.hpp54 ARGB, enumerator
DtcuTextureUtil.cpp1529 case TextureFormat::ARGB: swizzle = &RGBA; break; in getBorderColorReadSwizzle()
/external/skia/site/dev/contrib/
Dsimd.md15 …rs fall quite behind the rest in usage. Since we tend to operate on 8888 ARGB values, 8-bit SIMD …
64 …1. `SkPx` itself represents between 1 and `SkPx::N` 8888 ARGB pixels, where `SkPx::N` is a backend…
/external/deqp/external/vulkancts/framework/vulkan/
DvkImageUtil.cpp1519 case FMT_CASE(ARGB, UNORM_SHORT_1555): return VK_FORMAT_A1R5G5B5_UNORM_PACK16; in mapTextureFormat()
1660 …case VK_FORMAT_A1R5G5B5_UNORM_PACK16: return TextureFormat(TextureFormat::ARGB, TextureFormat::UNO… in mapVkFormat()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageTestsUtil.cpp1223 case tcu::TextureFormat::ARGB: in isComponentSwizzled()
/external/libyuv/files/source/
Drow_common.cc355 MAKEROWY(ARGB, 2, 1, 0, 4)
438 MAKEROWYJ(ARGB, 2, 1, 0, 4)
/external/libvpx/libvpx/third_party/libyuv/source/
Drow_common.cc351 MAKEROWY(ARGB, 2, 1, 0, 4)
433 MAKEROWYJ(ARGB, 2, 1, 0, 4)
/external/webp/
DREADME616 There are variants for decoding in BGR/RGBA/ARGB/BGRA order, along with
/external/syslinux/com32/lib/libpng/
Dlibpng.txt384 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
874 data as ARGB instead of the normal PNG format RGBA:
1997 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
/external/libjpeg-turbo/
DChangeLog.md763 4. Added new RGBA/BGRA/ABGR/ARGB colorspace extension constants (libjpeg API)
/external/skia/third_party/libpng/
Dlibpng-manual.txt1131 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
1873 data as ARGB instead of the normal PNG format RGBA:
3336 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
/external/libpng/
Dlibpng-manual.txt1131 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA
1873 data as ARGB instead of the normal PNG format RGBA:
3341 PNG_TRANSFORM_SWAP_ALPHA Flip RGBA to ARGB or GA