diff options
author | Dave Airlie <[email protected]> | 2013-03-31 20:41:28 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2013-03-31 20:41:28 +1000 |
commit | 5b36bc05be7d17f608b7fa8c98a5ba8e5383dffc (patch) | |
tree | 7a4a2e9cd602bacc549f149b296cb75fb428ea65 | |
parent | 2a528889a3a7c80b3eaa05dd3a1ba5a66549c56c (diff) |
glapi: fix storage multisample build errors
Reported on #radeon by udovdh
Signed-off-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/mapi/glapi/gen/ARB_texture_storage_multisample.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml b/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml index ebd896526f9..0f9d323d4ff 100644 --- a/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml +++ b/src/mapi/glapi/gen/ARB_texture_storage_multisample.xml @@ -10,7 +10,7 @@ <function name="TexStorage2DMultisample" offset="assign"> <param name="target" type="GLenum"/> <param name="samples" type="GLsizei"/> - <param name="internalformat" type="GLint"/> + <param name="internalformat" type="GLenum"/> <param name="width" type="GLsizei"/> <param name="height" type="GLsizei"/> <param name="fixedsamplelocations" type="GLboolean"/> @@ -19,7 +19,7 @@ <function name="TexStorage3DMultisample" offset="assign"> <param name="target" type="GLenum"/> <param name="samples" type="GLsizei"/> - <param name="internalformat" type="GLint"/> + <param name="internalformat" type="GLenum"/> <param name="width" type="GLsizei"/> <param name="height" type="GLsizei"/> <param name="depth" type="GLsizei"/> |