Lines Matching full:extensions
68 static bool AlwaysSupported(const Version &, const Extensions &) in AlwaysSupported() argument
73 static bool NeverSupported(const Version &, const Extensions &) in NeverSupported() argument
79 static bool RequireES(const Version &clientVersion, const Extensions &) in RequireES() argument
86 static bool RequireExt(const Version &, const Extensions &extensions) in RequireExt() argument
88 return extensions.*bool1; in RequireExt()
93 static bool RequireESOrExt(const Version &clientVersion, const Extensions &extensions) in RequireESOrExt() argument
96 extensions.*bool1; in RequireESOrExt()
99 // Check for a minimum client version or two extensions
104 static bool RequireESOrExtAndExt(const Version &clientVersion, const Extensions &extensions) in RequireESOrExtAndExt() argument
107 (extensions.*bool1 && extensions.*bool2); in RequireESOrExtAndExt()
110 // Check for a minimum client version or at least one of two extensions
115 static bool RequireESOrExtOrExt(const Version &clientVersion, const Extensions &extensions) in RequireESOrExtOrExt() argument
118 extensions.*bool1 || extensions.*bool2; in RequireESOrExtOrExt()
121 // Check support for two extensions
123 static bool RequireExtAndExt(const Version &, const Extensions &extensions) in RequireExtAndExt() argument
125 return extensions.*bool1 && extensions.*bool2; in RequireExtAndExt()
128 // Check support for either of two extensions
130 static bool RequireExtOrExt(const Version &, const Extensions &extensions) in RequireExtOrExt() argument
132 return extensions.*bool1 || extensions.*bool2; in RequireExtOrExt()
135 // Check support for any of three extensions
137 static bool RequireExtOrExtOrExt(const Version &, const Extensions &extensions) in RequireExtOrExtOrExt() argument
139 return extensions.*bool1 || extensions.*bool2 || extensions.*bool3; in RequireExtOrExtOrExt()
143 static bool SizedRGSupport(const Version &clientVersion, const Extensions &extensions) in SizedRGSupport() argument
146 (extensions.textureStorageEXT && extensions.textureRgEXT); in SizedRGSupport()
150 static bool SizedHalfFloatOESRGSupport(const Version &clientVersion, const Extensions &extensions) in SizedHalfFloatOESRGSupport() argument
152 return extensions.textureStorageEXT && extensions.textureHalfFloatOES && in SizedHalfFloatOESRGSupport()
153 extensions.textureRgEXT; in SizedHalfFloatOESRGSupport()
157 const Extensions &extensions) in SizedHalfFloatOESRGTextureAttachmentSupport() argument
159 return SizedHalfFloatOESRGSupport(clientVersion, extensions) && in SizedHalfFloatOESRGTextureAttachmentSupport()
160 extensions.colorBufferHalfFloatEXT; in SizedHalfFloatOESRGTextureAttachmentSupport()
164 static bool SizedHalfFloatRGSupport(const Version &clientVersion, const Extensions &extensions) in SizedHalfFloatRGSupport() argument
174 return SizedHalfFloatOESRGSupport(clientVersion, extensions); in SizedHalfFloatRGSupport()
179 const Extensions &extensions) in SizedHalfFloatRGTextureAttachmentSupport() argument
185 return extensions.colorBufferFloatEXT || in SizedHalfFloatRGTextureAttachmentSupport()
186 (extensions.webglCompatibilityANGLE && extensions.colorBufferHalfFloatEXT); in SizedHalfFloatRGTextureAttachmentSupport()
191 return SizedHalfFloatOESRGTextureAttachmentSupport(clientVersion, extensions); in SizedHalfFloatRGTextureAttachmentSupport()
196 const Extensions &extensions) in SizedHalfFloatRGRenderbufferSupport() argument
199 (extensions.textureHalfFloatOES && extensions.textureRgEXT)) && in SizedHalfFloatRGRenderbufferSupport()
200 (extensions.colorBufferFloatEXT || extensions.colorBufferHalfFloatEXT); in SizedHalfFloatRGRenderbufferSupport()
204 static bool SizedHalfFloatOESSupport(const Version &clientVersion, const Extensions &extensions) in SizedHalfFloatOESSupport() argument
206 return extensions.textureStorageEXT && extensions.textureHalfFloatOES; in SizedHalfFloatOESSupport()
210 const Extensions &extensions) in SizedHalfFloatOESTextureAttachmentSupport() argument
212 return SizedHalfFloatOESSupport(clientVersion, extensions) && in SizedHalfFloatOESTextureAttachmentSupport()
213 extensions.colorBufferHalfFloatEXT; in SizedHalfFloatOESTextureAttachmentSupport()
217 static bool SizedHalfFloatSupport(const Version &clientVersion, const Extensions &extensions) in SizedHalfFloatSupport() argument
227 return SizedHalfFloatOESSupport(clientVersion, extensions); in SizedHalfFloatSupport()
231 static bool SizedHalfFloatFilterSupport(const Version &clientVersion, const Extensions &extensions) in SizedHalfFloatFilterSupport() argument
241 return extensions.textureHalfFloatLinearOES; in SizedHalfFloatFilterSupport()
246 const Extensions &extensions) in SizedHalfFloatRGBTextureAttachmentSupport() argument
255 return extensions.colorBufferHalfFloatEXT && !extensions.webglCompatibilityANGLE; in SizedHalfFloatRGBTextureAttachmentSupport()
260 return SizedHalfFloatOESTextureAttachmentSupport(clientVersion, extensions); in SizedHalfFloatRGBTextureAttachmentSupport()
265 const Extensions &extensions) in SizedHalfFloatRGBRenderbufferSupport() argument
267 return !extensions.webglCompatibilityANGLE && in SizedHalfFloatRGBRenderbufferSupport()
268 ((clientVersion >= Version(3, 0) || extensions.textureHalfFloatOES) && in SizedHalfFloatRGBRenderbufferSupport()
269 extensions.colorBufferHalfFloatEXT); in SizedHalfFloatRGBRenderbufferSupport()
273 const Extensions &extensions) in SizedHalfFloatRGBATextureAttachmentSupport() argument
279 return extensions.colorBufferFloatEXT || in SizedHalfFloatRGBATextureAttachmentSupport()
280 (extensions.webglCompatibilityANGLE && extensions.colorBufferHalfFloatEXT); in SizedHalfFloatRGBATextureAttachmentSupport()
285 return SizedHalfFloatOESTextureAttachmentSupport(clientVersion, extensions); in SizedHalfFloatRGBATextureAttachmentSupport()
290 const Extensions &extensions) in SizedHalfFloatRGBARenderbufferSupport() argument
292 return (clientVersion >= Version(3, 0) || extensions.textureHalfFloatOES) && in SizedHalfFloatRGBARenderbufferSupport()
293 (extensions.colorBufferFloatEXT || extensions.colorBufferHalfFloatEXT); in SizedHalfFloatRGBARenderbufferSupport()
297 static bool SizedFloatRGSupport(const Version &clientVersion, const Extensions &extensions) in SizedFloatRGSupport() argument
300 (extensions.textureStorageEXT && extensions.textureFloatOES && extensions.textureRgEXT); in SizedFloatRGSupport()
304 static bool SizedFloatRGBSupport(const Version &clientVersion, const Extensions &extensions) in SizedFloatRGBSupport() argument
307 (extensions.textureStorageEXT && extensions.textureFloatOES) || in SizedFloatRGBSupport()
308 extensions.colorBufferFloatRgbCHROMIUM; in SizedFloatRGBSupport()
312 static bool SizedFloatRGBASupport(const Version &clientVersion, const Extensions &extensions) in SizedFloatRGBASupport() argument
315 (extensions.textureStorageEXT && extensions.textureFloatOES) || in SizedFloatRGBASupport()
316 extensions.colorBufferFloatRgbaCHROMIUM; in SizedFloatRGBASupport()
320 const Extensions &extensions) in SizedFloatRGBARenderableSupport() argument
323 return extensions.colorBufferFloatRgbaCHROMIUM || // ES2 in SizedFloatRGBARenderableSupport()
324 extensions.colorBufferFloatEXT; // ES3 in SizedFloatRGBARenderableSupport()
327 static bool Float32BlendableSupport(const Version &clientVersion, const Extensions &extensions) in Float32BlendableSupport() argument
330 return (extensions.colorBufferFloatRgbaCHROMIUM || extensions.colorBufferFloatEXT) && in Float32BlendableSupport()
331 extensions.floatBlendEXT; in Float32BlendableSupport()
373 GLenum InternalFormat::getReadPixelsFormat(const Extensions &extensions) const in getReadPixelsFormat()
380 if (!extensions.readFormatBgraEXT) in getReadPixelsFormat()
1030 … RequireESOrExt<3, 0, &Extensions::textureRgEXT>, RequireESOrExt<3, 0, &Ex… in BuildInternalFormatInfoMap()
1032 … RequireESOrExt<3, 0, &Extensions::textureRgEXT>, RequireESOrExt<3, 0, &Ex… in BuildInternalFormatInfoMap()
1034 …Extensions::textureStorageEXT>, AlwaysSupported, RequireESOrExt<3, 0, &Extensions::textureStorageE… in BuildInternalFormatInfoMap()
1036 …LIZED, false, RequireESOrExt<3, 0, &Extensions::textureStorageEXT>, AlwaysSupported, RequireESOrEx… in BuildInternalFormatInfoMap()
1037 …LIZED, false, RequireESOrExt<3, 0, &Extensions::textureStorageEXT>, AlwaysSupported, RequireESOrEx… in BuildInternalFormatInfoMap()
1038 …LIZED, false, RequireESOrExt<3, 0, &Extensions::textureStorageEXT>, AlwaysSupported, RequireESOrEx… in BuildInternalFormatInfoMap()
1039 …Extensions::textureStorageEXT>, AlwaysSupported, RequireESOrExt<3, 0, &Extensions::textureStorageE… in BuildInternalFormatInfoMap()
1043 …Extensions::sRGBEXT>, AlwaysSupported, RequireES<3, 0>, … in BuildInternalFormatInfoMap()
1044 …rted, RequireExt<&Extensions::colorBufferFloatEXT>, RequireExt<&Extensions::colorBuffer… in BuildInternalFormatInfoMap()
1071 …Extensions::textureFormatBGRA8888EXT>, AlwaysSupported, RequireExt<&Extensions::textureFormatBG… in BuildInternalFormatInfoMap()
1072 …Extensions::textureFormatBGRA8888EXT>, AlwaysSupported, RequireExt<&Extensions::textureFormatBG… in BuildInternalFormatInfoMap()
1073 …Extensions::textureFormatBGRA8888EXT>, AlwaysSupported, RequireExt<&Extensions::textureFormatBG… in BuildInternalFormatInfoMap()
1089 …// This format is supported on ES 2.0 with two extensions, so keep it out-of-line to not widen the… in BuildInternalFormatInfoMap()
1091 …NSIGNED_NORMALIZED, false, RequireESOrExtAndExt<3, 0, &Extensions::textureStorageEXT, &Extensions:… in BuildInternalFormatInfoMap()
1102 …rt, RequireExt<&Extensions::textureFloatLinearOES>, RequireExt<&Extensions::colorBufferFloa… in BuildInternalFormatInfoMap()
1103 …rt, RequireExt<&Extensions::textureFloatLinearOES>, RequireExt<&Extensions::colorBufferFloa… in BuildInternalFormatInfoMap()
1104 …false, SizedFloatRGBSupport, RequireExt<&Extensions::textureFloatLinearOES>, RequireExt<&Ext… in BuildInternalFormatInfoMap()
1105 … GL_FLOAT, false, SizedFloatRGBASupport, RequireExt<&Extensions::textureFloatLin… in BuildInternalFormatInfoMap()
1109 …<3, 0, &Extensions::depthTextureANGLE, &Extensions::depthTextureOES>, RequireESOrExtOrExt<3,… in BuildInternalFormatInfoMap()
1110 …Extensions::depthTextureANGLE>, RequireES<3, 0>, … in BuildInternalFormatInfoMap()
1111 … RequireESOrExt<3, 0, &Extensions::depthTextureANG… in BuildInternalFormatInfoMap()
1112 …Extensions::depthTextureANGLE, &Extensions::depthTextureOES>, AlwaysSupported, … in BuildInternalFormatInfoMap()
1113 …Extensions::depthTextureANGLE, &Extensions::packedDepthStencilOES>, AlwaysSupported, … in BuildInternalFormatInfoMap()
1114 …Extensions::depthBufferFloat2NV>, AlwaysSupported, … in BuildInternalFormatInfoMap()
1119 …LPHA, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, RequireExt<&Extensions::textureStorageE… in BuildInternalFormatInfoMap()
1120 …UMINANCE, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, RequireExt<&Extensions::textureStorageE… in BuildInternalFormatInfoMap()
1121 …UMINANCE_ALPHA, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, RequireExt<&Extensions::textureStorageE… in BuildInternalFormatInfoMap()
1122 … RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureHalfFloatOES>, … in BuildInternalFormatInfoMap()
1123 … RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureHalfFloatOES>, … in BuildInternalFormatInfoMap()
1124 … RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureHalfFloatOES>, … in BuildInternalFormatInfoMap()
1125 …, RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureFloatOES>, R… in BuildInternalFormatInfoMap()
1126 …, RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureFloatOES>, R… in BuildInternalFormatInfoMap()
1127 …, RequireExtAndExt<&Extensions::textureStorageEXT, &Extensions::textureFloatOES>, R… in BuildInternalFormatInfoMap()
1131 …4, 4, 1, 64, 1, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1132 …4, 4, 1, 64, 1, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1133 …4, 4, 1, 128, 2, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1134 …4, 4, 1, 128, 2, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1135 …4, 4, 1, 64, 3, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1136 …4, 4, 1, 64, 3, true, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1137 …4, 4, 1, 64, 3, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1138 …4, 4, 1, 64, 3, true, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1139 …4, 4, 1, 128, 4, false, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1140 …4, 4, 1, 128, 4, true, RequireESOrExtOrExt<3, 0, &Extensions::compressedTextureEtcANGLE, &Extensi… in BuildInternalFormatInfoMap()
1144 …L_COMPRESSED_RGB_S3TC_DXT1_EXT, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1145 …L_COMPRESSED_RGBA_S3TC_DXT1_EXT, 4, 4, 1, 64, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1148 …L_COMPRESSED_RGBA_S3TC_DXT3_ANGLE, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1151 …L_COMPRESSED_RGBA_S3TC_DXT5_ANGLE, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1154 …L_ETC1_RGB8_OES, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::compressedETC1R… in BuildInternalFormatInfoMap()
1158 …OMPRESSED_SRGB_S3TC_DXT1_EXT, 4, 4, 1, 64, 3, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1159 …OMPRESSED_SRGB_ALPHA_S3TC_DXT1_EXT, 4, 4, 1, 64, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1160 …OMPRESSED_SRGB_ALPHA_S3TC_DXT3_EXT, 4, 4, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1161 …OMPRESSED_SRGB_ALPHA_S3TC_DXT5_EXT, 4, 4, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1165 …SED_RGBA_ASTC_4x4_KHR, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1166 …SED_RGBA_ASTC_5x4_KHR, 5, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1167 …SED_RGBA_ASTC_5x5_KHR, 5, 5, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1168 …SED_RGBA_ASTC_6x5_KHR, 6, 5, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1169 …SED_RGBA_ASTC_6x6_KHR, 6, 6, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1170 …SED_RGBA_ASTC_8x5_KHR, 8, 5, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1171 …SED_RGBA_ASTC_8x6_KHR, 8, 6, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1172 …SED_RGBA_ASTC_8x8_KHR, 8, 8, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1173 …SED_RGBA_ASTC_10x5_KHR, 10, 5, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1174 …SED_RGBA_ASTC_10x6_KHR, 10, 6, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1175 …SED_RGBA_ASTC_10x8_KHR, 10, 8, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1176 …SED_RGBA_ASTC_10x10_KHR, 10, 10, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1177 …SED_RGBA_ASTC_12x10_KHR, 12, 10, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1178 …SED_RGBA_ASTC_12x12_KHR, 12, 12, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1180 …SED_SRGB8_ALPHA8_ASTC_4x4_KHR, 4, 4, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1181 …SED_SRGB8_ALPHA8_ASTC_5x4_KHR, 5, 4, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1182 …SED_SRGB8_ALPHA8_ASTC_5x5_KHR, 5, 5, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1183 …SED_SRGB8_ALPHA8_ASTC_6x5_KHR, 6, 5, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1184 …SED_SRGB8_ALPHA8_ASTC_6x6_KHR, 6, 6, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1185 …SED_SRGB8_ALPHA8_ASTC_8x5_KHR, 8, 5, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1186 …SED_SRGB8_ALPHA8_ASTC_8x6_KHR, 8, 6, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1187 …SED_SRGB8_ALPHA8_ASTC_8x8_KHR, 8, 8, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1188 …SED_SRGB8_ALPHA8_ASTC_10x5_KHR, 10, 5, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1189 …SED_SRGB8_ALPHA8_ASTC_10x6_KHR, 10, 6, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1190 …SED_SRGB8_ALPHA8_ASTC_10x8_KHR, 10, 8, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1191 …SED_SRGB8_ALPHA8_ASTC_10x10_KHR, 10, 10, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1192 …SED_SRGB8_ALPHA8_ASTC_12x10_KHR, 12, 10, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1193 …SED_SRGB8_ALPHA8_ASTC_12x12_KHR, 12, 12, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1195 …SED_RGBA_ASTC_3x3x3_OES, 3, 3, 3, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1196 …SED_RGBA_ASTC_4x3x3_OES, 4, 3, 3, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1197 …SED_RGBA_ASTC_4x4x3_OES, 4, 4, 3, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1198 …SED_RGBA_ASTC_4x4x4_OES, 4, 4, 4, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1199 …SED_RGBA_ASTC_5x4x4_OES, 5, 4, 4, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1200 …SED_RGBA_ASTC_5x5x4_OES, 5, 5, 4, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1201 …SED_RGBA_ASTC_5x5x5_OES, 5, 5, 5, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1202 …SED_RGBA_ASTC_6x5x5_OES, 6, 5, 5, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1203 …SED_RGBA_ASTC_6x6x5_OES, 6, 6, 5, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1204 …SED_RGBA_ASTC_6x6x6_OES, 6, 6, 6, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1206 …SED_SRGB8_ALPHA8_ASTC_3x3x3_OES, 3, 3, 3, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1207 …SED_SRGB8_ALPHA8_ASTC_4x3x3_OES, 4, 3, 3, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1208 …SED_SRGB8_ALPHA8_ASTC_4x4x3_OES, 4, 4, 3, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1209 …SED_SRGB8_ALPHA8_ASTC_4x4x4_OES, 4, 4, 4, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1210 …SED_SRGB8_ALPHA8_ASTC_5x4x4_OES, 5, 4, 4, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1211 …SED_SRGB8_ALPHA8_ASTC_5x5x4_OES, 5, 5, 4, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1212 …SED_SRGB8_ALPHA8_ASTC_5x5x5_OES, 5, 5, 5, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1213 …SED_SRGB8_ALPHA8_ASTC_6x5x5_OES, 6, 5, 5, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1214 …SED_SRGB8_ALPHA8_ASTC_6x6x5_OES, 6, 6, 5, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1215 …SED_SRGB8_ALPHA8_ASTC_6x6x6_OES, 6, 6, 6, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1219 …ESSED_RED_RGTC1_EXT, 4, 4, 1, 64, 1, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1220 …ESSED_SIGNED_RED_RGTC1_EXT, 4, 4, 1, 64, 1, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1221 …ESSED_RED_GREEN_RGTC2_EXT, 4, 4, 1, 128, 2, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1222 …ESSED_SIGNED_RED_GREEN_RGTC2_EXT, 4, 4, 1, 128, 2, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1226 …SSED_RGBA_BPTC_UNORM_EXT, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1227 …SSED_SRGB_ALPHA_BPTC_UNORM_EXT, 4, 4, 1, 128, 4, true, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1228 …SSED_RGB_BPTC_SIGNED_FLOAT_EXT, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1229 …SSED_RGB_BPTC_UNSIGNED_FLOAT_EXT, 4, 4, 1, 128, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1233 …SSED_RGB_PVRTC_4BPPV1_IMG, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1234 …SSED_RGB_PVRTC_2BPPV1_IMG, 8, 4, 1, 64, 3, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1235 …SSED_RGBA_PVRTC_4BPPV1_IMG, 4, 4, 1, 64, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1236 …SSED_RGBA_PVRTC_2BPPV1_IMG, 8, 4, 1, 64, 4, false, RequireExt<&Extensions::textureCompress… in BuildInternalFormatInfoMap()
1240 … 8, 4, 1, 64, 3, true, RequireExtAndExt<&Extensions::textureCompressionPvrtcIMG, &Extens… in BuildInternalFormatInfoMap()
1241 … 4, 4, 1, 64, 3, true, RequireExtAndExt<&Extensions::textureCompressionPvrtcIMG, &Extens… in BuildInternalFormatInfoMap()
1242 …T, 8, 4, 1, 64, 4, true, RequireExtAndExt<&Extensions::textureCompressionPvrtcIMG, &Extens… in BuildInternalFormatInfoMap()
1243 …T, 4, 4, 1, 64, 4, true, RequireExtAndExt<&Extensions::textureCompressionPvrtcIMG, &Extens… in BuildInternalFormatInfoMap()
1250 …D_NORMALIZED, RequireESOrExt<1, 0, &Extensions::textureStencil8OES>, NeverSupported, RequireESOrEx… in BuildInternalFormatInfoMap()
1254 …LE, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::lossyEtcDecodeA… in BuildInternalFormatInfoMap()
1255 …DE_ETC2_ANGLE, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::lossyEtcDecodeA… in BuildInternalFormatInfoMap()
1256 …ODE_ETC2_ANGLE, 4, 4, 1, 64, 3, true, RequireExt<&Extensions::lossyEtcDecodeA… in BuildInternalFormatInfoMap()
1257 …GH_ALPHA1_LOSSY_DECODE_ETC2_ANGLE, 4, 4, 1, 64, 3, false, RequireExt<&Extensions::lossyEtcDecodeA… in BuildInternalFormatInfoMap()
1258 …UGH_ALPHA1_LOSSY_DECODE_ETC2_ANGLE, 4, 4, 1, 64, 3, true, RequireExt<&Extensions::lossyEtcDecodeA… in BuildInternalFormatInfoMap()
1262 …Extensions::textureNorm16EXT>, AlwaysSupported, RequireExt<&Extensions::textureNorm16EXT>, Require… in BuildInternalFormatInfoMap()
1263 …GL_RED, GL_SHORT, GL_SIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EX… in BuildInternalFormatInfoMap()
1264 …Extensions::textureNorm16EXT>, AlwaysSupported, RequireExt<&Extensions::textureNorm16EXT>, Require… in BuildInternalFormatInfoMap()
1265 …GL_RG, GL_SHORT, GL_SIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EX… in BuildInternalFormatInfoMap()
1266 …GL_RGB, GL_UNSIGNED_SHORT, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EX… in BuildInternalFormatInfoMap()
1267 …GL_RGB, GL_SHORT, GL_SIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EX… in BuildInternalFormatInfoMap()
1268 …Extensions::textureNorm16EXT>, AlwaysSupported, RequireExt<&Extensions::textureNorm16EXT>, Require… in BuildInternalFormatInfoMap()
1269 …GL_RGBA, GL_SHORT, GL_SIGNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EX… in BuildInternalFormatInfoMap()
1273 …GL_RED, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, true, RequireExt<&Extensions::textureSRGBR8EX… in BuildInternalFormatInfoMap()
1277 …GL_RG, GL_UNSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, true, RequireExt<&Extensions::textureSRGBRG8E… in BuildInternalFormatInfoMap()
1286 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureRgEXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1288 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1289 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureRgEXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1291 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1292 … AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObje… in BuildInternalFormatInfoMap()
1293 … AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObje… in BuildInternalFormatInfoMap()
1295 …NSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureType2101… in BuildInternalFormatInfoMap()
1296 … AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObje… in BuildInternalFormatInfoMap()
1297 … AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObje… in BuildInternalFormatInfoMap()
1298 … AlwaysSupported, RequireESOrExt<2, 0, &Extensions::framebufferObje… in BuildInternalFormatInfoMap()
1299 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureNorm16EXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1300 …NSIGNED_INT_2_10_10_10_REV, GL_UNSIGNED_NORMALIZED, false, RequireExt<&Extensions::textureType2101… in BuildInternalFormatInfoMap()
1302 …NSIGNED_BYTE, GL_UNSIGNED_NORMALIZED, true, RequireExt<&Extensions::sRGBEXT>, … in BuildInternalFormatInfoMap()
1303 …GNED_NORMALIZED, true, RequireExt<&Extensions::sRGBEXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1316 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureFormatBGRA8888EXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1320 …GNED_NORMALIZED, false, RequireExt<&Extensions::textureFormatBGRA8888EXT>, AlwaysSupported, Requ… in BuildInternalFormatInfoMap()
1357 …_FLOAT, false, RequireExtAndExt<&Extensions::textureHalfFloatOES, &Extensions::textureRgEXT>, R… in BuildInternalFormatInfoMap()
1358 …_FLOAT, false, RequireExtAndExt<&Extensions::textureHalfFloatOES, &Extensions::textureRgEXT>, R… in BuildInternalFormatInfoMap()
1359 …eExt<&Extensions::textureHalfFloatOES>, RequireExt<&Extensions::t… in BuildInternalFormatInfoMap()
1360 …eExt<&Extensions::textureHalfFloatOES>, RequireExt<&Extensions::t… in BuildInternalFormatInfoMap()
1361 …GL_FLOAT, false, RequireExtAndExt<&Extensions::textureFloatOES, &Extensions::textureRgEXT>, Re… in BuildInternalFormatInfoMap()
1362 …GL_FLOAT, false, RequireExtAndExt<&Extensions::textureFloatOES, &Extensions::textureRgEXT>, Re… in BuildInternalFormatInfoMap()
1363 … GL_FLOAT, false, RequireExt<&Extensions::textureFloatOES>, R… in BuildInternalFormatInfoMap()
1366 … GL_FLOAT, false, RequireExt<&Extensions::textureFloatOES>, R… in BuildInternalFormatInfoMap()
1373 …_FLOAT_OES, GL_FLOAT, RequireExt<&Extensions::textureHalfFloatOES>, RequireExt<&Exte… in BuildInternalFormatInfoMap()
1374 …_FLOAT_OES, GL_FLOAT, RequireExt<&Extensions::textureHalfFloatOES>, RequireExt<&Exte… in BuildInternalFormatInfoMap()
1375 …_FLOAT_OES, GL_FLOAT, RequireExt<&Extensions::textureHalfFloatOES>, RequireExt<&Exte… in BuildInternalFormatInfoMap()
1376 …OAT, GL_FLOAT, RequireExt<&Extensions::textureFloatOES>, RequireExt<&Exten… in BuildInternalFormatInfoMap()
1377 …OAT, GL_FLOAT, RequireExt<&Extensions::textureFloatOES>, RequireExt<&Exten… in BuildInternalFormatInfoMap()
1378 …OAT, GL_FLOAT, RequireExt<&Extensions::textureFloatOES>, RequireExt<&Exten… in BuildInternalFormatInfoMap()
1382 …Extensions::depthTextureANGLE, &Extensions::depthTextureOES>, RequireExtOrExt<&Extensions::… in BuildInternalFormatInfoMap()
1383 …Extensions::depthTextureANGLE, &Extensions::depthTextureOES>, RequireExtOrExt<&Extensions::… in BuildInternalFormatInfoMap()
1385 …Extensions::packedDepthStencilOES>, AlwaysSupported, RequireExtAndExt<&Extensions::packedDepthSten… in BuildInternalFormatInfoMap()
1386 …Extensions::packedDepthStencilOES>, AlwaysSupported, RequireExtAndExt<&Extensions::packedDepthSten… in BuildInternalFormatInfoMap()
1387 …Extensions::packedDepthStencilOES>, AlwaysSupported, RequireExt<&Extensions::packedDepthStencilOES… in BuildInternalFormatInfoMap()
1393 … RequireExt<&Extensions::yuvInternalFormatANGLE>, RequireExt<&Extensions::yuvInternalForm… in BuildInternalFormatInfoMap()
1394 … RequireExt<&Extensions::yuvInternalFormatANGLE>, RequireExt<&Extensions::yuvInternalForm… in BuildInternalFormatInfoMap()