HomeSort by relevance Sort by last modified time
    Searched full:bgra (Results 1 - 25 of 180) sorted by null

1 2 3 4 5 6 7 8

  /external/qemu/distrib/sdl-1.2.15/src/video/ps3/spulibs/
yuv2rgb_converter.c 54 /* A maximum of 4 lines BGRA are stored, 4 byte per pixel */
55 unsigned char bgra[4 * MAX_HDTV_WIDTH * 4] __attribute__((aligned(128))); variable
182 // BGRA
231 // Convert YUV to BGRA, store it back (first two lines)
232 yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx], bgra, width);
238 bgra + size_2lines_bgra,
245 spu_mfcdma32(bgra, (unsigned int) ram_addr_bgra, size_2lines_bgra, STR_BUF, MFC_PUT_CMD);
247 spu_mfcdma32(bgra+size_2lines_bgra, (unsigned int) ram_addr_bgra, size_2lines_bgra, STR_BUF, MFC_PUT_CMD);
258 // Convert YUV to BGRA, store it back (first two lines)
259 yuv_to_rgb_w16_line(y_plane[buf_idx], v_plane[buf_idx], u_plane[buf_idx], bgra, width)
    [all...]
  /external/chromium_org/chrome/utility/cloud_print/
bitmap_image.h 18 BGRA
  /external/chromium_org/tools/imagediff/
image_diff_png.h 25 // Encode an BGRA pixel array into a PNG.
  /external/chromium_org/gpu/GLES2/extensions/CHROMIUM/
CHROMIUM_copy_texture.txt 33 The extension also supports copying BGRA textures and copying
34 EXTERNAL_OES texture to BGRA texture, which is not explicitly
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_packed_depth_stencil.spec 93 BGRA Color B, G, R, A components
116 UNSIGNED_SHORT_4_4_4_4 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
117 UNSIGNED_SHORT_4_4_4_4_REV ushort 4 RGBA,BGRA
118 UNSIGNED_SHORT_5_5_5_1 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
119 UNSIGNED_SHORT_1_5_5_5_REV ushort 4 RGBA,BGRA
120 UNSIGNED_INT_8_8_8_8 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
121 UNSIGNED_INT_8_8_8_8_REV uint 4 RGBA,BGRA
122 UNSIGNED_INT_10_10_10_2 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
123 UNSIGNED_INT_2_10_10_10_REV uint 4 RGBA,BGRA
179 BGRA blue green red alph
    [all...]
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 93 BGRA Color B, G, R, A components
116 UNSIGNED_SHORT_4_4_4_4 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
117 UNSIGNED_SHORT_4_4_4_4_REV ushort 4 RGBA,BGRA
118 UNSIGNED_SHORT_5_5_5_1 ushort 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
119 UNSIGNED_SHORT_1_5_5_5_REV ushort 4 RGBA,BGRA
120 UNSIGNED_INT_8_8_8_8 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
121 UNSIGNED_INT_8_8_8_8_REV uint 4 RGBA,BGRA
122 UNSIGNED_INT_10_10_10_2 uint 4 RGBA,BGRA,ABGR_EXT,CMYK_EXT
123 UNSIGNED_INT_2_10_10_10_REV uint 4 RGBA,BGRA
179 BGRA blue green red alph
    [all...]
  /external/chromium_org/content/common/gpu/client/
gpu_memory_buffer_impl_io_surface.cc 37 return 'BGRA';
  /external/chromium_org/third_party/skia/include/gpu/gl/
GrGLConfig_chrome.h 18 // For RGBA teximage/readpixels ANGLE will sw-convert to/from BGRA.
  /external/skia/include/gpu/gl/
GrGLConfig_chrome.h 18 // For RGBA teximage/readpixels ANGLE will sw-convert to/from BGRA.
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 175 * before: packed = BGRA
176 * after: packed = {BGRA, BGRA, BGRA, BGRA}
226 /* Ex: convert packed = {BGRA, BGRA, BGRA, BGRA}
lp_bld_format_soa.c 339 * Ex: packed = {BGRA, BGRA, BGRA, BGRA}.
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_aos.c 175 * before: packed = BGRA
176 * after: packed = {BGRA, BGRA, BGRA, BGRA}
226 /* Ex: convert packed = {BGRA, BGRA, BGRA, BGRA}
lp_bld_format_soa.c 339 * Ex: packed = {BGRA, BGRA, BGRA, BGRA}.
  /external/opencv/otherlibs/highgui/
utils.cpp 155 void icvCvt_BGRA2BGR_8u_C4C3R( const uchar* bgra, int bgra_step,
163 for( i = 0; i < size.width; i++, bgr += 3, bgra += 4 )
165 uchar t0 = bgra[swap_rb], t1 = bgra[1];
167 t0 = bgra[swap_rb^2]; bgr[2] = t0;
170 bgra += bgra_step - size.width*4;
175 void icvCvt_BGRA2RGBA_8u_C4R( const uchar* bgra, int bgra_step,
181 for( i = 0; i < size.width; i++, bgra += 4, rgba += 4 )
183 uchar t0 = bgra[0], t1 = bgra[1]
    [all...]
utils.h 64 void icvCvt_BGRA2Gray_8u_C4C1R( const uchar* bgra, int bgra_step,
69 void icvCvt_BGRA2BGR_8u_C4C3R( const uchar* bgra, int bgra_step,
79 void icvCvt_BGRA2RGBA_8u_C4R( const uchar* bgra, int bgra_step,
  /external/chromium_org/cc/resources/
prioritized_resource.cc 89 // The component order may be bgra if we uploaded bgra pixels to rgba
  /external/chromium_org/ui/gfx/codec/
jpeg_codec.h 31 // 4 bytes per pixel, in BGRA order in mem regardless of endianness.
35 // 4 bytes per pixel, it can be either RGBA or BGRA. It depends on the bit
  /external/chromium_org/skia/ext/
skia_utils_win.cc 60 // 0BGR = ((ARGB -> BGRA) >> 8)
skia_utils_ios.mm 32 // Allocate a bitmap context with 4 components per pixel (BGRA). Apple
  /external/chromium_org/third_party/qcms/
README.chromium 21 - Add bgra output support.
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrConfigConversionEffect.h 18 * unpremultiplied. Also on some systems reading/writing BGRA or RGBA is faster. In those cases we
  /external/skia/src/gpu/effects/
GrConfigConversionEffect.h 18 * unpremultiplied. Also on some systems reading/writing BGRA or RGBA is faster. In those cases we
  /external/chromium_org/remoting/proto/
control.proto 47 // Cursor pixmap data in 32-bit BGRA format.
  /external/chromium_org/third_party/skia/include/core/
SkImageInfo.h 81 #error "SK_*32_SHFIT values must correspond to BGRA or RGBA byte order"
  /external/llvm/lib/Target/NVPTX/
cl_common_defines.h 59 __CLK_UNORM_INT8888R, // four channel BGRA unorm8

Completed in 445 milliseconds

1 2 3 4 5 6 7 8