From bb3db388d8d4c7c2276a1db27fadaa1c57f1b39c Mon Sep 17 00:00:00 2001 From: Paul Berry Date: Tue, 6 Nov 2012 07:26:56 -0800 Subject: mesa: Fix const correctness of API implementation functions. This patch changes the use of const in the type signatures of _mesa_ShaderSource() and _mesa_TransformFeedbackVaryings(), to match the type signatures in the GL spec. This avoids warnings when building the code-generated api_exec.c file. Note: previously we avoided the build warnings because these functions were being type-checked against ShaderSourceARB and TransformFeedbackVaryingsEXT; those functions are semantically equivalent, but have fewer const qualifiers in their type signatures. Acked-by: Brian Paul --- src/mesa/main/shaderapi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mesa/main/shaderapi.h') diff --git a/src/mesa/main/shaderapi.h b/src/mesa/main/shaderapi.h index 64798bc..8ee68d8 100644 --- a/src/mesa/main/shaderapi.h +++ b/src/mesa/main/shaderapi.h @@ -112,7 +112,7 @@ extern void GLAPIENTRY _mesa_LinkProgram(GLhandleARB programObj); extern void GLAPIENTRY -_mesa_ShaderSource(GLhandleARB, GLsizei, const GLcharARB* *, const GLint *); +_mesa_ShaderSource(GLhandleARB, GLsizei, const GLcharARB* const *, const GLint *); extern void GLAPIENTRY _mesa_UseProgram(GLhandleARB); -- cgit v1.1