Searched refs:fFormatTable (Results 1 – 14 of 14) sorted by relevance
/third_party/flutter/skia/src/gpu/mtl/ |
D | GrMtlCaps.mm | 436 const auto& formatInfo = fFormatTable[i]; 479 info = &fFormatTable[GetFormatIndex(MTLPixelFormatR8Unorm)]; 503 info = &fFormatTable[GetFormatIndex(MTLPixelFormatA8Unorm)]; 520 info = &fFormatTable[GetFormatIndex(MTLPixelFormatB5G6R5Unorm)]; 535 info = &fFormatTable[GetFormatIndex(MTLPixelFormatABGR4Unorm)]; 551 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGBA8Unorm)]; 573 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRG8Unorm)]; 588 info = &fFormatTable[GetFormatIndex(MTLPixelFormatBGRA8Unorm)]; 603 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGBA8Unorm_sRGB)]; 618 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGB10A2Unorm)]; [all …]
|
D | GrMtlCaps.h | 155 FormatInfo fFormatTable[kNumMtlFormats]; variable 159 return fFormatTable[index]; in getFormatInfo()
|
/third_party/skia/src/gpu/mtl/ |
D | GrMtlCaps.mm | 578 const auto& formatInfo = fFormatTable[i]; 625 info = &fFormatTable[GetFormatIndex(MTLPixelFormatR8Unorm)]; 649 info = &fFormatTable[GetFormatIndex(MTLPixelFormatA8Unorm)]; 665 info = &fFormatTable[GetFormatIndex(MTLPixelFormatB5G6R5Unorm)]; 680 info = &fFormatTable[GetFormatIndex(MTLPixelFormatABGR4Unorm)]; 696 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGBA8Unorm)]; 718 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRG8Unorm)]; 733 info = &fFormatTable[GetFormatIndex(MTLPixelFormatBGRA8Unorm)]; 748 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGBA8Unorm_sRGB)]; 763 info = &fFormatTable[GetFormatIndex(MTLPixelFormatRGB10A2Unorm)]; [all …]
|
D | GrMtlCaps.h | 178 FormatInfo fFormatTable[kNumMtlFormats]; variable 182 return fFormatTable[index]; in getFormatInfo()
|
/third_party/flutter/skia/src/gpu/gl/ |
D | GrGLCaps.cpp | 1211 writer->appendHexU32("flags", fFormatTable[i].fFlags); in onDumpJSON() 1212 writer->appendHexU32("f_type", (uint32_t)fFormatTable[i].fFormatType); in onDumpJSON() 1213 writer->appendHexU32("b_internal", fFormatTable[i].fBaseInternalFormat); in onDumpJSON() 1214 writer->appendHexU32("s_internal", fFormatTable[i].fSizedInternalFormat); in onDumpJSON() 1215 writer->appendHexU32("c_internal", fFormatTable[i].fCompressedInternalFormat); in onDumpJSON() 1216 writer->appendHexU32("i_for_teximage", fFormatTable[i].fInternalFormatForTexImage); in onDumpJSON() 1217 writer->appendHexU32("i_for_renderbuffer", fFormatTable[i].fInternalFormatForRenderbuffer); in onDumpJSON() 1218 writer->appendHexU32("default_ex_type", fFormatTable[i].fDefaultExternalType); in onDumpJSON() 1221 for (int j = 0; j < fFormatTable[i].fColorTypeInfoCount; ++j) { in onDumpJSON() 1222 const auto& ctInfo = fFormatTable[i].fColorTypeInfos[j]; in onDumpJSON() [all …]
|
D | GrGLCaps.h | 688 FormatInfo fFormatTable[kGrGLFormatCount]; variable 690 FormatInfo& getFormatInfo(GrGLFormat format) { return fFormatTable[static_cast<int>(format)]; } in getFormatInfo() 692 return fFormatTable[static_cast<int>(format)]; in getFormatInfo()
|
/third_party/skia/src/gpu/gl/ |
D | GrGLCaps.h | 770 FormatInfo fFormatTable[kGrGLColorFormatCount]; variable 772 FormatInfo& getFormatInfo(GrGLFormat format) { return fFormatTable[static_cast<int>(format)]; } in getFormatInfo() 774 return fFormatTable[static_cast<int>(format)]; in getFormatInfo()
|
D | GrGLCaps.cpp | 1248 writer->appendHexU32("flags", fFormatTable[i].fFlags); in onDumpJSON() 1249 writer->appendHexU32("f_type", (uint32_t)fFormatTable[i].fFormatType); in onDumpJSON() 1250 writer->appendHexU32("c_internal", fFormatTable[i].fCompressedInternalFormat); in onDumpJSON() 1251 writer->appendHexU32("i_for_teximage", fFormatTable[i].fInternalFormatForTexImageOrStorage); in onDumpJSON() 1252 writer->appendHexU32("i_for_renderbuffer", fFormatTable[i].fInternalFormatForRenderbuffer); in onDumpJSON() 1253 writer->appendHexU32("default_ex_format", fFormatTable[i].fDefaultExternalFormat); in onDumpJSON() 1254 writer->appendHexU32("default_ex_type", fFormatTable[i].fDefaultExternalType); in onDumpJSON() 1255 writer->appendHexU32("default_color_type", (uint32_t)fFormatTable[i].fDefaultColorType); in onDumpJSON() 1258 for (int j = 0; j < fFormatTable[i].fColorTypeInfoCount; ++j) { in onDumpJSON() 1259 const auto& ctInfo = fFormatTable[i].fColorTypeInfos[j]; in onDumpJSON() [all …]
|
/third_party/skia/src/gpu/d3d/ |
D | GrD3DCaps.h | 200 FormatInfo fFormatTable[kNumDxgiFormats]; variable
|
D | GrD3DCaps.cpp | 308 const auto& formatInfo = fFormatTable[i]; in setColorType() 346 return fFormatTable[i]; in getFormatInfo()
|
/third_party/flutter/skia/src/gpu/vk/ |
D | GrVkCaps.h | 268 FormatInfo fFormatTable[kNumVkFormats]; variable
|
D | GrVkCaps.cpp | 660 const auto& formatInfo = fFormatTable[i]; in setColorType() 698 return fFormatTable[i]; in getFormatInfo()
|
/third_party/skia/src/gpu/vk/ |
D | GrVkCaps.h | 372 FormatInfo fFormatTable[kNumVkFormats]; variable
|
D | GrVkCaps.cpp | 790 const auto& formatInfo = fFormatTable[i]; in setColorType() 828 return fFormatTable[i]; in getFormatInfo()
|