From 4d0f3d2319169aca112f9387ef7509290713dc75 Mon Sep 17 00:00:00 2001 From: Paul Berry Date: Thu, 9 Jan 2014 18:54:35 -0800 Subject: [PATCH] mesa/cs: Add DispatchCompute() to driver function table. Reviewed-by: Jordan Justen Reviewed-by: Kenneth Graunke --- src/mesa/main/dd.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 0c1a13fa4bf..a329d9c5340 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -1005,6 +1005,13 @@ struct dd_function_table { void (*MemoryBarrier)(struct gl_context *ctx, GLbitfield barriers); /** @} */ + + /** + * \name GL_ARB_compute_shader interface + */ + /*@{*/ + void (*DispatchCompute)(struct gl_context *ctx, const GLuint *num_groups); + /*@}*/ }; -- 2.30.2