summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/dd.h
diff options
context:
space:
mode:
authorJordan Justen <[email protected]>2015-09-17 11:14:45 -0700
committerJordan Justen <[email protected]>2015-09-24 19:15:13 -0700
commitd11d018ce38b76a580242d64e61e8e30dad035e8 (patch)
treefe4af75361501903afe069991ac214c5dabe53a0 /src/mesa/main/dd.h
parent12cf91db0236291ebaff71f602d929064b1ec096 (diff)
mesa/cs: Implement glDispatchComputeIndirect
Signed-off-by: Jordan Justen <[email protected]> Reviewed-by: Kristian Høgsberg <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r--src/mesa/main/dd.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h
index 2c746fc45de..88f37273e1e 100644
--- a/src/mesa/main/dd.h
+++ b/src/mesa/main/dd.h
@@ -1021,6 +1021,7 @@ struct dd_function_table {
*/
/*@{*/
void (*DispatchCompute)(struct gl_context *ctx, const GLuint *num_groups);
+ void (*DispatchComputeIndirect)(struct gl_context *ctx, GLintptr indirect);
/*@}*/
};