mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-21 13:18:09 +02:00
Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Brian Paul <brianp@vmware.com>
67 lines
2 KiB
XML
67 lines
2 KiB
XML
<?xml version="1.0"?>
|
|
<!DOCTYPE OpenGLAPI SYSTEM "gl_API.dtd">
|
|
|
|
<!-- Note: no GLX protocol info yet. -->
|
|
|
|
|
|
<OpenGLAPI>
|
|
|
|
<category name="GL_ARB_texture_storage" number="117">
|
|
|
|
<enum name="TEXTURE_IMMUTABLE_FORMAT" value="0x912F"/>
|
|
|
|
<function name="TexStorage1D" offset="assign">
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="TexStorage2D" offset="assign">
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
<param name="height" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="TexStorage3D" offset="assign">
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
<param name="height" type="GLsizei"/>
|
|
<param name="depth" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="TextureStorage1DEXT" offset="assign">
|
|
<param name="texture" type="GLuint"/>
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="TextureStorage2DEXT" offset="assign">
|
|
<param name="texture" type="GLuint"/>
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
<param name="height" type="GLsizei"/>
|
|
</function>
|
|
|
|
<function name="TextureStorage3DEXT" offset="assign">
|
|
<param name="texture" type="GLuint"/>
|
|
<param name="target" type="GLenum"/>
|
|
<param name="levels" type="GLsizei"/>
|
|
<param name="internalFormat" type="GLenum"/>
|
|
<param name="width" type="GLsizei"/>
|
|
<param name="height" type="GLsizei"/>
|
|
<param name="depth" type="GLsizei"/>
|
|
</function>
|
|
|
|
</category>
|
|
|
|
|
|
</OpenGLAPI>
|