| /xsrc/external/mit/libdrm/dist/tests/etnaviv/ |
| H A D | write_bmp.h | 28 void bmp_dump32(char *buffer, unsigned width, unsigned height, bool bgra, const char *filename); 30 void bmp_dump32_noflip(char *buffer, unsigned width, unsigned height, bool bgra, const char *filename); 32 void bmp_dump32_ex(char *buffer, unsigned width, unsigned height, bool flip, bool bgra, bool alpha, const char *filename);
|
| H A D | write_bmp.c | 67 bmp_header_write(int fd, int width, int height, int bgra, int noflip, int alpha) argument 94 if (bgra) { 104 bmp_dump32(char *buffer, unsigned width, unsigned height, bool bgra, const char *filename) argument 114 bmp_header_write(fd, width, height, bgra, false, true); 120 bmp_dump32_noflip(char *buffer, unsigned width, unsigned height, bool bgra, const char *filename) argument 130 bmp_header_write(fd, width, height, bgra, true, true); 136 bmp_dump32_ex(char *buffer, unsigned width, unsigned height, bool flip, bool bgra, bool alpha, const char *filename) argument 146 bmp_header_write(fd, width, height, bgra, flip, alpha);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/main/ |
| H A D | texcompress_etc.h | 81 bool bgra);
|
| H A D | texcompress_etc.c | 723 bool bgra) 746 if (bgra) { 809 bool bgra) 833 if (bgra) { 1069 bool bgra) 1090 if (bgra) { 1221 bool bgra) 1230 src_width, src_height, bgra); 1238 src_width, src_height, bgra); 1262 src_width, src_height, bgra); 717 etc2_unpack_srgb8(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 803 etc2_unpack_srgb8_alpha8(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 1063 etc2_unpack_srgb8_punchthrough_alpha1(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 1214 _mesa_unpack_etc2_format(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned src_width,unsigned src_height,mesa_format format,bool bgra) argument [all...] |
| /xsrc/external/mit/MesaLib/dist/src/mesa/main/ |
| H A D | texcompress_etc.h | 81 bool bgra);
|
| H A D | texcompress_etc.c | 725 bool bgra) 748 if (bgra) { 811 bool bgra) 835 if (bgra) { 1071 bool bgra) 1092 if (bgra) { 1223 bool bgra) 1232 src_width, src_height, bgra); 1240 src_width, src_height, bgra); 1264 src_width, src_height, bgra); 719 etc2_unpack_srgb8(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 805 etc2_unpack_srgb8_alpha8(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 1065 etc2_unpack_srgb8_punchthrough_alpha1(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned width,unsigned height,bool bgra) argument 1216 _mesa_unpack_etc2_format(uint8_t * dst_row,unsigned dst_stride,const uint8_t * src_row,unsigned src_stride,unsigned src_width,unsigned src_height,mesa_format format,bool bgra) argument [all...] |
| /xsrc/external/mit/mesa-demos/dist/src/tests/ |
| H A D | getteximage.c | 68 const GLubyte *bgra = (GLubyte *) data2; local in function:TestGetTexImage 70 if (rgba[i+0] != bgra[i+2] || 71 rgba[i+1] != bgra[i+1] || 72 rgba[i+2] != bgra[i+0] || 73 rgba[i+3] != bgra[i+3]) {
|
| /xsrc/external/mit/mesa-demos/dist/src/trivial/ |
| H A D | vbo-drawarrays-2101010.c | 14 GLboolean bgra = GL_FALSE; variable in typeref:typename:GLboolean 107 if (bgra) 159 if (strcmp(argv[i], "-bgra") == 0) { 160 bgra = GL_TRUE;
|
| /xsrc/external/mit/freetype/dist/src/base/ |
| H A D | ftbitmap.c | 467 ft_gray_for_premultiplied_srgb_bgra( const FT_Byte* bgra ) argument 469 FT_UInt a = bgra[3]; 491 l = ( 4732UL /* 0.0722 * 65536 */ * bgra[0] * bgra[0] + 492 46871UL /* 0.7152 * 65536 */ * bgra[1] * bgra[1] + 493 13933UL /* 0.2126 * 65536 */ * bgra[2] * bgra[2] ) >> 16;
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/ |
| H A D | lp_linear_sampler.c | 81 * Unstretched blit of a bgra texture. 624 __m128i bgra = *(__m128i *)&src_row[i]; local in function:fetch_bgrx_axis_aligned_linear 625 __m128i bgrx = _mm_or_si128(bgra, mask); 645 __m128i bgra = *(__m128i *)&row[i]; local in function:fetch_bgrx_clamp_linear 646 __m128i bgrx = _mm_or_si128(bgra, mask); 666 __m128i bgra = *(__m128i *)&row[i]; local in function:fetch_bgrx_linear 667 __m128i bgrx = _mm_or_si128(bgra, mask);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/nv50/ |
| H A D | nv50_formats.c | 377 #define VF_x(pf, type, size, bgra) 0 378 #define VF_A(pf, type, size, bgra) \ 379 NVXX_3D_VAF_SIZE(size) | NVXX_3D_VAF_TYPE(type) | (bgra << 31) 380 #define VF(c, pf, type, size, bgra) \ 382 VF_##c(pf, type, size, bgra), \
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/nv50/ |
| H A D | nv50_formats.c | 377 #define VF_x(pf, type, size, bgra) 0 378 #define VF_A(pf, type, size, bgra) \ 379 NVXX_3D_VAF_SIZE(size) | NVXX_3D_VAF_TYPE(type) | (bgra << 31) 380 #define VF(c, pf, type, size, bgra) \ 382 VF_##c(pf, type, size, bgra), \
|
| /xsrc/external/mit/libXft/dist/src/ |
| H A D | xftglyphs.c | 403 int bgra[4] = { 0, 0, 0, 0 }; local in function:_scaled_fill_xrender_bitmap 419 bgra[i] += src[src_x * 4 + i]; 424 dst_line[4 * x + i] = (unsigned char) (bgra[i] / sample_count);
|
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 20.3.4.rst | 147 - mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra
|
| H A D | 12.0.2.rst | 190 - nv50,nvc0: srgb rendering is only available for rgba/bgra
|
| H A D | 21.0.0.rst | 2292 - mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra
|
| H A D | 20.2.0.rst | 2287 - virgl: apply bgra dest swizzle and add Portal 2
|
| H A D | 21.1.0.rst | 3284 - mesa: fix alpha channel of ETC2_SRGB8 decompression for !bgra
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir.h | 1015 bool bgra; member in struct:nv50_ir::TexInstruction::ImgFormatDesc
|
| H A D | nv50_ir_lowering_nvc0.cpp | 2279 if (format->bgra) {
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir.h | 1067 bool bgra; member in struct:nv50_ir::TexInstruction::ImgFormatDesc
|
| H A D | nv50_ir_lowering_nv50.cpp | 1946 if (format->bgra) { 2024 if (format->bgra) {
|
| H A D | nv50_ir_lowering_nvc0.cpp | 2317 if (format->bgra) {
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/state_tracker/ |
| H A D | st_cb_texture.c | 656 bool bgra = stImage->pt->format == PIPE_FORMAT_B8G8R8A8_SRGB; local in function:st_UnmapTextureImage 664 bgra); 695 bool bgra = stImage->pt->format == PIPE_FORMAT_B8G8R8A8_SRGB; local in function:st_UnmapTextureImage 702 bgra);
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/state_tracker/ |
| H A D | st_cb_texture.c | 353 bool bgra = stImage->pt->format == PIPE_FORMAT_B8G8R8A8_SRGB; local in function:st_UnmapTextureImage 359 bgra);
|