diff options
author | Laura Ekstrand <[email protected]> | 2014-10-24 10:04:11 -0700 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:28 -0800 |
commit | 5a5fe9f308908a6c09f910429d0d3021fdbf7872 (patch) | |
tree | 5ed6ccf2be70d01d65fcfca5e180a6405de391e1 /src/mapi | |
parent | 97c838cf856e478401be9526ab028aea3aacad26 (diff) |
main: Added entry points for glTextureStorage*D.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/ARB_direct_state_access.xml b/src/mapi/glapi/gen/ARB_direct_state_access.xml index 9f2eacb2d48..37aac7ec2d0 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -15,5 +15,29 @@ <param name="textures" type="GLuint *" /> </function> + <function name="TextureStorage1D" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="levels" type="GLsizei" /> + <param name="internalformat" type="GLenum" /> + <param name="width" type="GLsizei" /> + </function> + + <function name="TextureStorage2D" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="levels" type="GLsizei" /> + <param name="internalformat" type="GLenum" /> + <param name="width" type="GLsizei" /> + <param name="height" type="GLsizei" /> + </function> + + <function name="TextureStorage3D" offset="assign"> + <param name="texture" type="GLuint" /> + <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> |