diff options
author | Eric Anholt <eric@anholt.net> | 2013-05-13 10:16:10 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2013-06-17 14:32:04 -0700 |
commit | 3140a4e12b692ad799d5ff3f331a275dfe8ec4e0 (patch) | |
tree | 15a0fd8225d0590aae56423a3381f9aa36b3f5ed /cmake | |
parent | 8f3392a27c3fb279471e008f25667212b1c61d14 (diff) |
glapi: Add parsing of GLES2/gl2ext.h.
Weirdly, the gl3ext.h has no entries currently, and to access
extensions from GLES3 you need to include this GLES2 header.
We now have code-generated piglit-dispatch support for all of desktop,
GLES2, and GLES3.
v2: Express the corename substitution as a regexp. (suggestion by Paul)
Reviewed-by: Paul Berry <stereotype441@gmail.com>
Diffstat (limited to 'cmake')
-rw-r--r-- | cmake/piglit_glapi.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmake/piglit_glapi.cmake b/cmake/piglit_glapi.cmake index 899c7ee5a..59d4d428f 100644 --- a/cmake/piglit_glapi.cmake +++ b/cmake/piglit_glapi.cmake @@ -35,6 +35,7 @@ set(piglit_glapi_inputs ${piglit_glapi_src_dir}/enum.spec ${piglit_glapi_src_dir}/enumext.spec ${piglit_glapi_src_dir}/GLES3/gl3.h + ${piglit_glapi_src_dir}/GLES2/gl2ext.h ) add_custom_command( |