projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e084fe5
)
egl: query/print EGL_CLIENT_APIS
author
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 28 May 2008 21:25:01 +0000
(15:25 -0600)
committer
Brian Paul
<brian.paul@tungstengraphics.com>
Wed, 28 May 2008 21:25:01 +0000
(15:25 -0600)
progs/egl/eglinfo.c
patch
|
blob
|
history
diff --git
a/progs/egl/eglinfo.c
b/progs/egl/eglinfo.c
index 85de2173fc0e0ffe5b4d0c051b63ef3c21a53593..442de5d63ff32ced4f368a0674c3b04a80118ea5 100644
(file)
--- a/
progs/egl/eglinfo.c
+++ b/
progs/egl/eglinfo.c
@@
-150,6
+150,9
@@
main(int argc, char *argv[])
printf("EGL API version: %d.%d\n", maj, min);
printf("EGL vendor string: %s\n", eglQueryString(d, EGL_VENDOR));
printf("EGL version string: %s\n", eglQueryString(d, EGL_VERSION));
+#ifdef EGL_VERSION_1_2
+ printf("EGL client APIs: %s\n", eglQueryString(d, EGL_CLIENT_APIS));
+#endif
printf("EGL extensions string:\n");
printf(" %s\n", eglQueryString(d, EGL_EXTENSIONS));
printf("\n");