Module: Mesa Branch: master Commit: 5b36bc05be7d17f608b7fa8c98a5ba8e5383dffc URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=5b36bc05be7d17f608b7fa8c98a5ba8e5383dffc
Author: Dave Airlie <[email protected]> Date: Sun Mar 31 20:41:28 2013 +1000 glapi: fix storage multisample build errors Reported on #radeon by udovdh Signed-off-by: Dave Airlie <[email protected]> --- .../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 ebd8965..0f9d323 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"/> _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
