diff options
author | Paul Berry <[email protected]> | 2014-01-07 15:50:39 -0800 |
---|---|---|
committer | Paul Berry <[email protected]> | 2014-02-05 09:01:18 -0800 |
commit | 47d480e3e4850ef8934775570444feea503295d7 (patch) | |
tree | a5029c0584286c0ac5509a7c511a10840f2688b4 /src/mesa/program/program.h | |
parent | 9b34ae2e64fd29fd4cd1cf18f7dd09116e02dc96 (diff) |
mesa/cs: Create the gl_compute_program struct, and the code to initialize it.
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/program/program.h')
-rw-r--r-- | src/mesa/program/program.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/program/program.h b/src/mesa/program/program.h index 4351e05331a..ef698242ffa 100644 --- a/src/mesa/program/program.h +++ b/src/mesa/program/program.h @@ -84,6 +84,11 @@ _mesa_init_geometry_program(struct gl_context *ctx, GLenum target, GLuint id); extern struct gl_program * +_mesa_init_compute_program(struct gl_context *ctx, + struct gl_compute_program *prog, + GLenum target, GLuint id); + +extern struct gl_program * _mesa_new_program(struct gl_context *ctx, GLenum target, GLuint id); extern void |