diff options
author | Ian Romanick <[email protected]> | 2009-08-14 01:20:56 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2009-08-14 16:28:51 -0700 |
commit | 9d5bb3c6f820a5a99e1f55b2fd14d250761fcddc (patch) | |
tree | 1c4292e307c7e5de5366e7e7f2c6d0942dacec70 /src/mesa/glapi | |
parent | 970f76866617bc084847ce112c925b456d3deacc (diff) |
Infrastructure for GL_ARB_seamless_cube_map
Diffstat (limited to 'src/mesa/glapi')
-rw-r--r-- | src/mesa/glapi/ARB_seamless_cube_map.xml | 12 | ||||
-rw-r--r-- | src/mesa/glapi/Makefile | 1 | ||||
-rw-r--r-- | src/mesa/glapi/gl_API.xml | 2 |
3 files changed, 15 insertions, 0 deletions
diff --git a/src/mesa/glapi/ARB_seamless_cube_map.xml b/src/mesa/glapi/ARB_seamless_cube_map.xml new file mode 100644 index 00000000000..3cdc84d2b98 --- /dev/null +++ b/src/mesa/glapi/ARB_seamless_cube_map.xml @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd"> + +<OpenGLAPI> + +<category name="GL_ARB_seamless_cubemap" number="65"> + <enum name="TEXTURE_CUBE_MAP_SEAMLESS" count="1" value="0x88F4"> + <size name="Get" mode="get"/> + </enum> +</category> + +</OpenGLAPI> diff --git a/src/mesa/glapi/Makefile b/src/mesa/glapi/Makefile index 2178eacef5e..f706309b565 100644 --- a/src/mesa/glapi/Makefile +++ b/src/mesa/glapi/Makefile @@ -50,6 +50,7 @@ API_XML = gl_API.xml \ ARB_copy_buffer.xml \ ARB_framebuffer_object.xml \ ARB_map_buffer_range.xml \ + ARB_seamless_cube_map.xml \ ARB_vertex_array_object.xml \ APPLE_vertex_array_object.xml \ EXT_provoking_vertex.xml diff --git a/src/mesa/glapi/gl_API.xml b/src/mesa/glapi/gl_API.xml index 1703637c7b4..d2fcc6dc1f2 100644 --- a/src/mesa/glapi/gl_API.xml +++ b/src/mesa/glapi/gl_API.xml @@ -7954,6 +7954,8 @@ <xi:include href="ARB_vertex_array_object.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> +<xi:include href="ARB_seamless_cube_map.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/> + <!-- Non-ARB extensions sorted by extension number. --> |