summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--video/out/opengl/common.c7
-rw-r--r--video/out/opengl/common.h1
-rw-r--r--video/out/opengl/formats.c4
-rw-r--r--video/out/opengl/formats.h3
4 files changed, 3 insertions, 12 deletions
diff --git a/video/out/opengl/common.c b/video/out/opengl/common.c
index 7121522f4b..99d8bbeb51 100644
--- a/video/out/opengl/common.c
+++ b/video/out/opengl/common.c
@@ -256,17 +256,12 @@ static const struct gl_functions gl_functions[] = {
.ver_exclude = 300,
.ver_es_exclude = 1,
},
- // 16 bit float textures filterable with GL_LINEAR in GLES
- {
- .extension = "GL_OES_texture_half_float_linear",
- .provides = MPGL_CAP_OES_HFLOAT_LIN,
- .ver_exclude = 1,
- },
// 16 bit float textures that can be rendered to in GLES
{
.extension = "GL_EXT_color_buffer_half_float",
.provides = MPGL_CAP_EXT_CR_HFLOAT,
.ver_exclude = 1,
+ .ver_es_exclude = 320,
},
{
.ver_core = 320,
diff --git a/video/out/opengl/common.h b/video/out/opengl/common.h
index 84c27dfea0..ed12732bfc 100644
--- a/video/out/opengl/common.h
+++ b/video/out/opengl/common.h
@@ -63,7 +63,6 @@ enum {
MPGL_CAP_EXT16 = (1 << 18), // GL_EXT_texture_norm16
MPGL_CAP_ARB_FLOAT = (1 << 19), // GL_ARB_texture_float
MPGL_CAP_EXT_CR_HFLOAT = (1 << 20), // GL_EXT_color_buffer_half_float
- MPGL_CAP_OES_HFLOAT_LIN = (1 << 21), // GL_OES_texture_half_float_linear
MPGL_CAP_SW = (1 << 30), // indirect or sw renderer
};
diff --git a/video/out/opengl/formats.c b/video/out/opengl/formats.c
index 3ca6fe7b8e..2e3dad0cbc 100644
--- a/video/out/opengl/formats.c
+++ b/video/out/opengl/formats.c
@@ -116,9 +116,7 @@ int gl_format_feature_flags(GL *gl)
| (gl->es >= 320 ? F_ES32 : 0)
| (gl->mpgl_caps & MPGL_CAP_EXT16 ? F_EXT16 : 0)
| ((gl->es >= 300 &&
- (gl->mpgl_caps & MPGL_CAP_TEX_RG) &&
- (gl->mpgl_caps & MPGL_CAP_EXT_CR_HFLOAT) &&
- (gl->mpgl_caps & MPGL_CAP_OES_HFLOAT_LIN)) ? F_EXTF16 : 0)
+ (gl->mpgl_caps & MPGL_CAP_EXT_CR_HFLOAT)) ? F_EXTF16 : 0)
| ((gl->version == 210 &&
(gl->mpgl_caps & MPGL_CAP_ARB_FLOAT) &&
(gl->mpgl_caps & MPGL_CAP_TEX_RG) &&
diff --git a/video/out/opengl/formats.h b/video/out/opengl/formats.h
index f62f96cff0..6ced4a7676 100644
--- a/video/out/opengl/formats.h
+++ b/video/out/opengl/formats.h
@@ -23,8 +23,7 @@ enum {
F_ES3 = 1 << 3, // ES3.0 or later
F_ES32 = 1 << 4, // ES3.2 or later
F_EXT16 = 1 << 5, // ES with GL_EXT_texture_norm16
- F_EXTF16 = 1 << 6, // GL_OES_texture_half_float_linear +
- // GL_EXT_color_buffer_half_float
+ F_EXTF16 = 1 << 6, // GL_EXT_color_buffer_half_float
F_GL2F = 1 << 7, // GL2.1-only with texture_rg + texture_float + FBOs
F_APPL = 1 << 8, // GL_APPLE_rgb_422