summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/shader_query.cpp
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2017-06-26 17:38:22 +0200
committerSamuel Pitoiset <[email protected]>2017-06-28 10:25:13 +0200
commit48400e0bd6f29eb590dc726ba482856d16f1b3e5 (patch)
tree0f3e60cdf2d3ffdab5efe6a683ccc13cab265559 /src/mesa/main/shader_query.cpp
parent34e5b39f37f6bd43676b3422b058c4df464c5ee7 (diff)
mesa: add KHR_no_error support for glBindAttribLocation()
Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Timothy Arceri <[email protected]>
Diffstat (limited to 'src/mesa/main/shader_query.cpp')
-rw-r--r--src/mesa/main/shader_query.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/mesa/main/shader_query.cpp b/src/mesa/main/shader_query.cpp
index 9086a904f3d..0f66f757038 100644
--- a/src/mesa/main/shader_query.cpp
+++ b/src/mesa/main/shader_query.cpp
@@ -97,6 +97,17 @@ bind_attrib_location(struct gl_context *ctx,
}
void GLAPIENTRY
+_mesa_BindAttribLocation_no_error(GLuint program, GLuint index,
+ const GLchar *name)
+{
+ GET_CURRENT_CONTEXT(ctx);
+
+ struct gl_shader_program *const shProg =
+ _mesa_lookup_shader_program(ctx, program);
+ bind_attrib_location(ctx, shProg, index, name, true);
+}
+
+void GLAPIENTRY
_mesa_BindAttribLocation(GLuint program, GLuint index,
const GLchar *name)
{