diff options
author | Fabian Bieler <[email protected]> | 2014-03-07 10:28:03 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2015-07-23 00:59:25 +0200 |
commit | 78d3054980edd1a12e56ad0362e889915cff335b (patch) | |
tree | 6375b83ffe03fc4bd0358bc260f030144d510e89 /src/mesa/program/program.h | |
parent | bb97cc66c149d0782ec269aab29700252fda9db0 (diff) |
mesa: add tessellation shader init functions.
Signed-off-by: Chris Forbes <[email protected]>
Reviewed-by: Jordan Justen <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/program/program.h')
-rw-r--r-- | src/mesa/program/program.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/mesa/program/program.h b/src/mesa/program/program.h index 396a5c89db3..eafb969d2a5 100644 --- a/src/mesa/program/program.h +++ b/src/mesa/program/program.h @@ -79,6 +79,16 @@ _mesa_init_fragment_program(struct gl_context *ctx, GLenum target, GLuint id); extern struct gl_program * +_mesa_init_tess_ctrl_program(struct gl_context *ctx, + struct gl_tess_ctrl_program *prog, + GLenum target, GLuint id); + +extern struct gl_program * +_mesa_init_tess_eval_program(struct gl_context *ctx, + struct gl_tess_eval_program *prog, + GLenum target, GLuint id); + +extern struct gl_program * _mesa_init_geometry_program(struct gl_context *ctx, struct gl_geometry_program *prog, GLenum target, GLuint id); |