summaryrefslogtreecommitdiff
path: root/glamor/glamor.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-09-24 22:26:17 +0300
committerEric Anholt <eric@anholt.net>2016-09-29 09:10:53 -0700
commit117d614d1ba324bdb02c50a430c2e0d22a384f03 (patch)
tree88092f432c5801e7cca538d8be9212a6090b741e /glamor/glamor.c
parent7a5ddf8da5ed817aa2dd6f7af1b9197a5ceec60b (diff)
downloadxserver-117d614d1ba324bdb02c50a430c2e0d22a384f03.tar.gz
glamor: Require GL_OES_texture_border_clamp for GLES2.
The extension came out in 2000, and all Mesa-supported hardware that can do glamor supports it. We were already relying on the ARB version being present on desktop. Signed-off-by: Eric Anholt <eric@anholt.net> Reviewed-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'glamor/glamor.c')
-rw-r--r--glamor/glamor.c19
1 files changed, 15 insertions, 4 deletions
diff --git a/glamor/glamor.c b/glamor/glamor.c
index 7b3953660..b7718325d 100644
--- a/glamor/glamor.c
+++ b/glamor/glamor.c
@@ -515,6 +515,10 @@ glamor_init(ScreenPtr screen, unsigned int flags)
gl_version = epoxy_gl_version();
+ /* assume a core profile if we are GL 3.1 and don't have ARB_compatibility */
+ glamor_priv->is_core_profile =
+ gl_version >= 31 && !epoxy_has_gl_extension("GL_ARB_compatibility");
+
shading_version_string = (char *) glGetString(GL_SHADING_LANGUAGE_VERSION);
if (!shading_version_string) {
@@ -569,6 +573,12 @@ glamor_init(ScreenPtr screen, unsigned int flags)
goto fail;
}
+ if (!glamor_priv->is_core_profile &&
+ !epoxy_has_gl_extension("GL_ARB_texture_border_clamp")) {
+ ErrorF("GL_ARB_texture_border_clamp required\n");
+ goto fail;
+ }
+
if (!glamor_check_instruction_count(gl_version))
goto fail;
} else {
@@ -581,6 +591,11 @@ glamor_init(ScreenPtr screen, unsigned int flags)
ErrorF("GL_EXT_texture_format_BGRA8888 required\n");
goto fail;
}
+
+ if (!epoxy_has_gl_extension("GL_OES_texture_border_clamp")) {
+ ErrorF("GL_OES_texture_border_clamp required\n");
+ goto fail;
+ }
}
glamor_priv->has_rw_pbo = FALSE;
@@ -612,10 +627,6 @@ glamor_init(ScreenPtr screen, unsigned int flags)
glamor_priv->has_dual_blend =
epoxy_has_gl_extension("GL_ARB_blend_func_extended");
- /* assume a core profile if we are GL 3.1 and don't have ARB_compatibility */
- glamor_priv->is_core_profile =
- gl_version >= 31 && !epoxy_has_gl_extension("GL_ARB_compatibility");
-
glamor_priv->can_copyplane = (gl_version >= 30);
glamor_setup_debug_output(screen);