diff options
author | Vinson Lee <[email protected]> | 2014-02-21 17:16:14 -0800 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2014-02-21 18:05:40 -0800 |
commit | aaefc85f3b7c7bf5c0ab28344509ef4b291b4415 (patch) | |
tree | 782c403e8738b293023cd663e7e96118e654d302 /src/mapi | |
parent | 34587e4a004a4ce6df8d8cbaaf2853f2183743db (diff) |
mesa/sso: Change CreateShaderProgramv return type from uint to GLuint.
This patch fixes this MinGW build error.
Compiling src/mapi/glapi/glapi_dispatch.c ...
In file included from src/mapi/glapi/glapi_dispatch.c:41:0:
build/windows-x86_64-debug/mapi/glapi/glapitable.h:930:4: error: expected specifier-qualifier-list before 'uint'
uint (GLAPIENTRYP CreateShaderProgramv)(GLenum type, GLsizei count, const GLchar * const * strings); /* 886 */
^
Signed-off-by: Vinson Lee <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_separate_shader_objects.xml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/ARB_separate_shader_objects.xml b/src/mapi/glapi/gen/ARB_separate_shader_objects.xml index f996456ef31..80234ea5ee9 100644 --- a/src/mapi/glapi/gen/ARB_separate_shader_objects.xml +++ b/src/mapi/glapi/gen/ARB_separate_shader_objects.xml @@ -28,7 +28,7 @@ <param name="type" type="GLenum" /> <param name="count" type="GLsizei" /> <param name="strings" type="const GLchar * const *" /> - <return type="uint"/> + <return type="GLuint"/> </function> <function name="BindProgramPipeline" offset="assign"> <param name="pipeline" type="GLuint" /> |