/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/ |
H A D | nv30_format.c | 193 #define SRGB 0x00700000 macro 216 _(L8_SRGB , L8 , 0, C, C, C, 1, 0, 0, 0, x, SRGB, ____), 229 _(BGRX8888_SRGB , A8R8G8B8, 0, C, C, C, 1, 2, 1, 0, x, SRGB, ____), 231 _(BGRA8888_SRGB , A8R8G8B8, 0, C, C, C, C, 2, 1, 0, 3, SRGB, ____), 234 _(DXT1_SRGB , DXT1 , 0, C, C, C, 1, 2, 1, 0, x, SRGB, ____), 236 _(DXT1_SRGBA , DXT1 , 0, C, C, C, C, 2, 1, 0, 3, SRGB, ____), 238 _(DXT3_SRGBA , DXT3 , 0, C, C, C, C, 2, 1, 0, 3, SRGB, ____), 240 _(DXT5_SRGBA , DXT5 , 0, C, C, C, C, 2, 1, 0, 3, SRGB, ____), 242 _(L8A8_SRGB , A8L8 , 0, C, C, C, C, 0, 0, 0, 3, SRGB, ____),
|
/third_party/skia/tools/fiddle/ |
H A D | examples.h | 41 #define REGISTER_FIDDLE(NAME, WIDTH, HEIGHT, TEXT, IMG_INDEX, DURATION, SRGB, F16, \ 48 TEXT, SRGB, F16, OFSCR, OFSCR_TEXTURABLE, OFSCR_MIPMAP}); \
|
/third_party/mesa3d/src/util/format/ |
H A D | u_format_pack.py | 305 if src_colorspace == SRGB: 320 elif dst_colorspace == SRGB: 478 if src_colorspace == SRGB and i == 3: 505 if src_colorspace == SRGB and i == 3: 550 if dst_colorspace == SRGB and inv_swizzle[i] == 3: 583 if dst_colorspace == SRGB and inv_swizzle[i] == 3:
|
H A D | u_format_parse.py | 41 SRGB = 'srgb' variable 356 if colorspace in (RGB, SRGB):
|
H A D | u_format.c | 1123 REMAP_RGB(5, 6, 5, SRGB); in util_format_rgb_to_bgr() 1126 REMAP_RGB(8, 8, 8, SRGB); in util_format_rgb_to_bgr() 1136 REMAP_RGBA_ALL(8, 8, 8, 8, SRGB); in util_format_rgb_to_bgr()
|
/third_party/mesa3d/src/amd/common/ |
H A D | gfx10_format_table.py | 181 if fmt.colorspace == SRGB: 183 num_format = 'SRGB' 237 # Don't expose SRGB buffer formats 238 if 'buffers_only' in extra_flags and fmt.colorspace == SRGB:
|
/third_party/mesa3d/src/mesa/main/ |
H A D | format_parser.py | 38 SRGB = 'srgb' variable 263 assert colorspace in (RGB, SRGB, YUV, ZS) 268 if self.colorspace in (RGB, SRGB):
|
/third_party/mesa3d/src/gallium/drivers/d3d12/ |
H A D | d3d12_format.c | 57 MAP_FORMAT2(FMT, SRGB, FMT, UNORM_SRGB) 151 MAP_FORMAT2(DXT1, SRGB, BC1, UNORM_SRGB) \ 485 // All 16 bit color channel data is assumed to be linear rather than SRGB in d3d12_convert_from_legacy_color_space()
|
/third_party/glfw/tests/ |
H A D | glfwinfo.c | 392 AUXBUFFERS, SAMPLES, STEREO, SRGB, SINGLEBUFFER, NOERROR_SRSLY, in main() enumerator 423 { "srgb", 0, NULL, SRGB }, in main() 623 case SRGB: in main()
|
/third_party/skia/modules/canvaskit/tests/ |
H A D | util.js | 228 colorSpace: CanvasKit.ColorSpace.SRGB,
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | utilities.h | 245 SRGB, member in gl::SrgbOverride
|
/third_party/skia/modules/canvaskit/ |
H A D | interface.js | 43 CanvasKit.ColorSpace.SRGB = CanvasKit.ColorSpace._MakeSRGB(); 826 colorSpace = colorSpace || CanvasKit.ColorSpace.SRGB; 1209 'colorSpace': CanvasKit.ColorSpace.SRGB
|
H A D | externs.js | 329 SRGB: {},
|
/third_party/skia/modules/canvaskit/htmlcanvas/ |
H A D | canvas2dcontext.js | 696 'colorSpace': CanvasKit.ColorSpace.SRGB, 827 'colorSpace': CanvasKit.ColorSpace.SRGB
|
/third_party/skia/src/core/ |
H A D | SkVM.cpp | 1163 SRGB = PixelFormat::SRGB, in SkColorType_to_PixelFormat() local 1186 case kSRGBA_8888_SkColorType: return { SRGB, 8,8,8,8, 0,8,16,24}; in SkColorType_to_PixelFormat() 1231 case PixelFormat:: SRGB: return from_srgb (bits, channel); in unpack() 1240 case PixelFormat:: SRGB: return from_unorm(bits, channel); in unpack() 1375 case PixelFormat:: SRGB: encoded = to_srgb (bits, channel); break; in pack32() 1384 case PixelFormat:: SRGB: encoded = to_unorm(bits, channel); break; in pack32()
|
H A D | SkVM.h | 574 enum { UNORM, SRGB, FLOAT} encoding; enumerator
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
H A D | Texture.cpp | 994 mState.mSrgbOverride = (sRGBOverride == GL_SRGB) ? SrgbOverride::SRGB : SrgbOverride::Default; in setSRGBOverride() 1003 return (mState.mSrgbOverride == SrgbOverride::SRGB) ? GL_SRGB : GL_NONE; in getSRGBOverride()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/ |
H A D | TextureVk.cpp | 2775 // By default, we decode SRGB images. in shouldDecodeSRGB() 2779 // If the SRGB override is enabled, we also decode SRGB. in shouldDecodeSRGB() 3021 // Use this as a proxy for the SRGB override & skip decode settings. in initImageViews() 3284 (!angleFormat.isSRGB && (mState.getSRGBOverride() == gl::SrgbOverride::SRGB)) in getImageViewSubresourceSerial() 3285 ? gl::SrgbOverride::SRGB in getImageViewSubresourceSerial()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
H A D | frame_capture_utils.cpp | 75 ENUM_TO_STRING(gl::SrgbOverride, SRGB); in SrgbOverrideToString() 1155 json->addCString("SRGB", SrgbOverrideToString(textureState.getSRGBOverride())); in SerializeTextureState()
|