summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compute.h
diff options
context:
space:
mode:
authorSamuel Pitoiset <[email protected]>2016-09-06 16:23:58 +0200
committerSamuel Pitoiset <[email protected]>2016-10-07 00:18:57 +0200
commita063f3084acfaf9a63ab8af004d94c592b19b8a0 (patch)
tree9d315569b5cbcb16eafdb5f6be969de0de842177 /src/mesa/main/compute.h
parentf96945c5b5c3a52685e76795f03f75c75fb62fc7 (diff)
glapi: add entry points for GL_ARB_compute_variable_group_size
v2: - correctly sort that new extension (Ian) - fix up the comment (Ian) Signed-off-by: Samuel Pitoiset <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/compute.h')
-rw-r--r--src/mesa/main/compute.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/main/compute.h b/src/mesa/main/compute.h
index 0cc034fd61c..8018bbb2858 100644
--- a/src/mesa/main/compute.h
+++ b/src/mesa/main/compute.h
@@ -35,4 +35,9 @@ _mesa_DispatchCompute(GLuint num_groups_x,
extern void GLAPIENTRY
_mesa_DispatchComputeIndirect(GLintptr indirect);
+extern void GLAPIENTRY
+_mesa_DispatchComputeGroupSizeARB(GLuint num_groups_x, GLuint num_groups_y,
+ GLuint num_groups_z, GLuint group_size_x,
+ GLuint group_size_y, GLuint group_size_z);
+
#endif