diff options
author | Brian <[email protected]> | 2007-07-02 15:32:12 -0600 |
---|---|---|
committer | Brian <[email protected]> | 2007-07-02 15:32:12 -0600 |
commit | ea92566ed9cabf5eb5d0993b39c4372d5bfcf3f1 (patch) | |
tree | 25c2ae399fa689a3c1cf1e89a8ee509f232a96b0 /src/mesa/pipe/p_context.h | |
parent | d523a04853fe9924d8dbf86da08019d17d4f58ef (diff) |
rename a few structs (use _state suffix consistantly), reorder/sort fields in some structs
Diffstat (limited to 'src/mesa/pipe/p_context.h')
-rw-r--r-- | src/mesa/pipe/p_context.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/pipe/p_context.h b/src/mesa/pipe/p_context.h index 93dbbe6ab77..b87c42844c4 100644 --- a/src/mesa/pipe/p_context.h +++ b/src/mesa/pipe/p_context.h @@ -87,8 +87,8 @@ struct pipe_context { void (*set_setup_state)( struct pipe_context *, const struct pipe_setup_state * ); - void (*set_scissor_rect)( struct pipe_context *, - const struct pipe_scissor_rect * ); + void (*set_scissor_state)( struct pipe_context *, + const struct pipe_scissor_state * ); void (*set_stencil_state)( struct pipe_context *, const struct pipe_stencil_state * ); @@ -101,8 +101,8 @@ struct pipe_context { GLuint unit, struct pipe_texture_object * ); - void (*set_viewport)( struct pipe_context *, - const struct pipe_viewport * ); + void (*set_viewport_state)( struct pipe_context *, + const struct pipe_viewport_state * ); }; |