Module: Mesa Branch: master Commit: 18bce2f19437f9a6b86e33324cb559cd54470d51 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=18bce2f19437f9a6b86e33324cb559cd54470d51
Author: Ilia Mirkin <[email protected]> Date: Fri Jul 11 22:09:38 2014 -0400 gallium: add interfaces for controlling tess program state Signed-off-by: Ilia Mirkin <[email protected]> Reviewed-by: Roland Scheidegger <[email protected]> Signed-off-by: Marek Olšák <[email protected]> --- src/gallium/include/pipe/p_context.h | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/gallium/include/pipe/p_context.h b/src/gallium/include/pipe/p_context.h index 2d9f6d3..67deb04 100644 --- a/src/gallium/include/pipe/p_context.h +++ b/src/gallium/include/pipe/p_context.h @@ -170,6 +170,16 @@ struct pipe_context { void (*bind_gs_state)(struct pipe_context *, void *); void (*delete_gs_state)(struct pipe_context *, void *); + void * (*create_tcs_state)(struct pipe_context *, + const struct pipe_shader_state *); + void (*bind_tcs_state)(struct pipe_context *, void *); + void (*delete_tcs_state)(struct pipe_context *, void *); + + void * (*create_tes_state)(struct pipe_context *, + const struct pipe_shader_state *); + void (*bind_tes_state)(struct pipe_context *, void *); + void (*delete_tes_state)(struct pipe_context *, void *); + void * (*create_vertex_elements_state)(struct pipe_context *, unsigned num_elements, const struct pipe_vertex_element *); _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
