summaryrefslogtreecommitdiff
path: root/src/mesa/state_tracker/st_context.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-11-16 17:13:01 -0700
committerBrian <brian.paul@tungstengraphics.com>2007-11-16 17:13:01 -0700
commitaa880bdfa05d8ff2486ef8266f93dea983b7c6fd (patch)
tree701bf509114a5e0f2cd7a85a165cc6cc1f39ca3b /src/mesa/state_tracker/st_context.h
parent6a1154bab0d296b60f889bdc13254568f4051104 (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.h3
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 82e133911f..a6045230a0 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.