aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/main/compute.h
diff options
context:
space:
mode:
authorTimothy Arceri <[email protected]>2017-05-15 12:28:08 +1000
committerTimothy Arceri <[email protected]>2017-05-17 10:12:04 +1000
commitf96edf72b49348176b5eea0bdfe114e260dd3f99 (patch)
tree34c56bc0af9f26b58adcbb307493a0ed513fa761 /src/mesa/main/compute.h
parentd1894c42efb97fe5af09f235be5658558ee24346 (diff)
mesa: add KHR_no_error support for glDispatchCompute*()
Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main/compute.h')
-rw-r--r--src/mesa/main/compute.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mesa/main/compute.h b/src/mesa/main/compute.h
index 8018bbb2858..bfb3223d077 100644
--- a/src/mesa/main/compute.h
+++ b/src/mesa/main/compute.h
@@ -28,14 +28,26 @@
#include "glheader.h"
extern void GLAPIENTRY
+_mesa_DispatchCompute_no_error(GLuint num_groups_x, GLuint num_groups_y,
+ GLuint num_groups_z);
+extern void GLAPIENTRY
_mesa_DispatchCompute(GLuint num_groups_x,
GLuint num_groups_y,
GLuint num_groups_z);
extern void GLAPIENTRY
+_mesa_DispatchComputeIndirect_no_error(GLintptr indirect);
+extern void GLAPIENTRY
_mesa_DispatchComputeIndirect(GLintptr indirect);
extern void GLAPIENTRY
+_mesa_DispatchComputeGroupSizeARB_no_error(GLuint num_groups_x,
+ GLuint num_groups_y,
+ GLuint num_groups_z,
+ GLuint group_size_x,
+ GLuint group_size_y,
+ GLuint group_size_z);
+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);