summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorChia-I Wu <olvaffe@gmail.com>2009-09-30 12:13:34 +0800
committerBrian Paul <brianp@vmware.com>2009-09-30 08:15:30 -0600
commit28c2190336aec5b0b1d0f74d08e32dc604bcc4c1 (patch)
tree72632168dce16c5e35ec9fb3c9ff80bdbf85aebd /progs
parente0b2848f4fadc832f68c3c1a059546684935969d (diff)
progs/egl: Check EGL_MESA_screen_surface is supported in demo2.
Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
Diffstat (limited to 'progs')
-rw-r--r--progs/egl/demo2.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/egl/demo2.c b/progs/egl/demo2.c
index 5817771aec..3994656721 100644
--- a/progs/egl/demo2.c
+++ b/progs/egl/demo2.c
@@ -7,6 +7,7 @@
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
+#include <string.h>
#include <unistd.h>
#include <EGL/egl.h>
@@ -129,6 +130,11 @@ main(int argc, char *argv[])
printf("EGL version = %d.%d\n", maj, min);
printf("EGL_VENDOR = %s\n", eglQueryString(d, EGL_VENDOR));
+ if (!strstr(eglQueryString(d, EGL_EXTENSIONS),
+ "EGL_MESA_screen_surface")) {
+ printf("EGL_MESA_screen_surface is not supported\n");
+ exit(1);
+ }
eglGetConfigs(d, configs, 10, &numConfigs);
printf("Got %d EGL configs:\n", numConfigs);