Lines Matching refs:extension
186 static bool checkExtensionSupport (const ContextInfo& ctxInfo, const RenderContext& ctx, const std::string& extension)
188 if (de::beginsWith(extension, "GL_"))
189 return ctxInfo.isExtensionSupported(extension.c_str());
190 else if (extension == "DEQP_gles3_core_compatible")
192 else if (extension == "DEQP_gles31_core_compatible")
201 bool checkExtensionSupport (const RenderContext& ctx, const std::string& extension)
204 return checkExtensionSupport(*info, ctx, extension);
207 std::string getExtensionDescription (const std::string& extension)
209 if (de::beginsWith(extension, "GL_"))
210 return extension;
211 else if (extension == "DEQP_gles3_core_compatible")
213 else if (extension == "DEQP_gles31_core_compatible")