Back out changeset 7431c1300d28 (bug 1189715)

This commit is contained in:
Lee Salzman 2016-03-29 22:52:21 -04:00
parent 29341ea574
commit aefe39adfa
4 changed files with 0 additions and 16 deletions

View File

@ -105,7 +105,6 @@ static const char *const sExtensionNames[] = {
"GL_ARB_texture_float",
"GL_ARB_texture_non_power_of_two",
"GL_ARB_texture_rectangle",
"GL_ARB_texture_rg",
"GL_ARB_texture_storage",
"GL_ARB_texture_swizzle",
"GL_ARB_timer_query",

View File

@ -138,7 +138,6 @@ enum class GLFeature {
texture_half_float,
texture_half_float_linear,
texture_non_power_of_two,
texture_rg,
texture_storage,
texture_swizzle,
transform_feedback2,
@ -428,7 +427,6 @@ public:
ARB_texture_float,
ARB_texture_non_power_of_two,
ARB_texture_rectangle,
ARB_texture_rg,
ARB_texture_storage,
ARB_texture_swizzle,
ARB_timer_query,

View File

@ -690,15 +690,6 @@ static const FeatureInfo sFeatureInfoArr[] = {
GLContext::Extensions_End
}
},
{
"texture_rg",
GLVersion::GL3,
GLESVersion::ES3,
GLContext::ARB_texture_rg,
{
GLContext::Extensions_End
}
},
{
"texture_storage",
GLVersion::GL4_2,

View File

@ -371,10 +371,6 @@ const GLubyte* glGetString_mozilla(GrGLenum name)
} else if (sGLContext.get()->IsExtensionSupported(GLContext::EXT_framebuffer_object)) {
strcat(extensionsString, "GL_EXT_framebuffer_object ");
}
if (sGLContext.get()->IsSupported(GLFeature::texture_rg)) {
strcat(extensionsString, "GL_ARB_texture_rg ");
}
}
if (sGLContext.get()->IsExtensionSupported(GLContext::EXT_texture_format_BGRA8888)) {