diff options
author | wm4 <wm4@nowhere> | 2016-05-12 20:42:12 +0200 |
---|---|---|
committer | wm4 <wm4@nowhere> | 2016-05-12 21:22:28 +0200 |
commit | bd41a3ab62eac1ed826a7075aa8bb21486d9dcd2 (patch) | |
tree | 798f23a19a0b24aed101afdffc8cb7cf42f03208 /video/out/opengl | |
parent | 84ccebd9b9fba47f1e08bbc263b87174a133ea01 (diff) |
vo_opengl: add detection for the ES texture_rg extension
Diffstat (limited to 'video/out/opengl')
-rw-r--r-- | video/out/opengl/common.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/video/out/opengl/common.c b/video/out/opengl/common.c index c181a8ed13..7df667f08c 100644 --- a/video/out/opengl/common.c +++ b/video/out/opengl/common.c @@ -228,6 +228,12 @@ static const struct gl_functions gl_functions[] = { .extension = "GL_ARB_texture_rg", .provides = MPGL_CAP_TEX_RG, }, + { + .ver_core = 300, + .ver_es_core = 300, + .extension = "GL_EXT_texture_rg", + .provides = MPGL_CAP_TEX_RG, + }, // GL_R16 etc. { .extension = "GL_EXT_texture_norm16", |