From: Paul Berry Date: Fri, 10 Jan 2014 02:54:35 +0000 (-0800) Subject: mesa/cs: Add DispatchCompute() to driver function table. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4d0f3d2319169aca112f9387ef7509290713dc75;p=mesa.git mesa/cs: Add DispatchCompute() to driver function table. Reviewed-by: Jordan Justen Reviewed-by: Kenneth Graunke --- 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); + /*@}*/ };