diff options
author | Brian <[email protected]> | 2007-11-16 17:13:01 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-16 17:13:01 -0700 |
commit | aa880bdfa05d8ff2486ef8266f93dea983b7c6fd (patch) | |
tree | 701bf509114a5e0f2cd7a85a165cc6cc1f39ca3b /src/mesa/state_tracker/st_context.h | |
parent | 6a1154bab0d296b60f889bdc13254568f4051104 (diff) |
Reimplement glRasterPos using the private 'draw' module.
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index 82e133911f3..a6045230a0f 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -68,9 +68,10 @@ struct st_context struct pipe_context *pipe; - struct draw_context *draw; /**< For selection/feedback */ + struct draw_context *draw; /**< For selection/feedback/rastpos only */ struct draw_stage *feedback_stage; /**< For GL_FEEDBACK rendermode */ struct draw_stage *selection_stage; /**< For GL_SELECT rendermode */ + struct draw_stage *rastpos_stage; /**< For glRasterPos */ /* Some state is contained in constant objects. * Other state is just parameter values. |