Lines Matching refs:supportedExtensions
82 SupportedExtensions supportedExtensions;
84 supportedExtensions.cubeMapArray = renderCtxInfoid.isExtensionSupported("GL_EXT_texture_cube_map_array");
85 supportedExtensions.sRGBR8 = renderCtxInfoid.isExtensionSupported("GL_EXT_texture_sRGB_R8");
86 supportedExtensions.sRGBRG8 = renderCtxInfoid.isExtensionSupported("GL_EXT_texture_sRGB_RG8");
88 return supportedExtensions;
161 const SupportedExtensions supportedExtensions = checkSupport(m_renderCtxInfo);
163 if ((supportedExtensions.cubeMapArray && m_format != GL_SR8_EXT && m_format != GL_SRG8_EXT) ||
164 (supportedExtensions.cubeMapArray && m_format == GL_SR8_EXT && supportedExtensions.sRGBR8) ||
165 (supportedExtensions.cubeMapArray && m_format == GL_SRG8_EXT && supportedExtensions.sRGBRG8))
183 if (supportedExtensions.cubeMapArray == false)
186 if (supportedExtensions.sRGBR8 == false)
189 if (supportedExtensions.sRGBRG8 == false)