Lines Matching refs:ext
57 bool has_gl_extension_from_string(const char* ext,
59 int extLength = strlen(ext);
63 if (n == extLength && 0 == strncmp(ext, extensionString, n)) {
84 bool has_gl_extension(const char* ext) {
88 return has_gl_extension_from_string(ext, glstr);
243 const char* ext;
246 ext = (const char*)fGetString(GR_GL_EXTENSIONS);
271 has_gl_extension_from_string("GL_EXT_blend_color", ext)) {
281 has_gl_extension_from_string("GL_ARB_texture_compression", ext)) {
295 if ((major >= 3) || has_gl_extension_from_string("GL_ARB_framebuffer_object", ext)) {
301 if (has_gl_extension_from_string("GL_EXT_framebuffer_blit", ext) &&
305 if (has_gl_extension_from_string("GL_EXT_framebuffer_multisample", ext) &&
311 if (has_gl_extension_from_string("GL_CHROMIUM_framebuffer_multisample", ext)) {
317 if (has_gl_extension_from_string("GL_APPLE_framebuffer_multisample", ext)) {
329 has_gl_extension_from_string("GL_OES_mapbuffer", ext)) {
338 (has_gl_extension_from_string("GL_ARB_blend_func_extended", ext) ||