summaryrefslogtreecommitdiffstats
path: root/src/mesa/pipe/i915simple
diff options
context:
space:
mode:
authorZack Rusin <[email protected]>2007-09-18 10:02:16 -0400
committerZack Rusin <[email protected]>2007-09-18 10:02:16 -0400
commitde69fc1703f79e5c97e66b654de7a93b7abce8f0 (patch)
tree1e5755074add4101d85e85d096dd74b2e0a69939 /src/mesa/pipe/i915simple
parentfbb2f840aef9a540401575b032edb4dfdabd10bb (diff)
Finishing up rename of the setup state to the rasterizer state.
Diffstat (limited to 'src/mesa/pipe/i915simple')
-rw-r--r--src/mesa/pipe/i915simple/i915_context.c2
-rw-r--r--src/mesa/pipe/i915simple/i915_state.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/i915simple/i915_context.c b/src/mesa/pipe/i915simple/i915_context.c
index 6e48b3bd03b..36372898ce6 100644
--- a/src/mesa/pipe/i915simple/i915_context.c
+++ b/src/mesa/pipe/i915simple/i915_context.c
@@ -285,7 +285,7 @@ struct pipe_context *i915_create( struct pipe_winsys *pipe_winsys,
*/
i915->draw = draw_create();
assert(i915->draw);
- draw_set_setup_stage(i915->draw, i915_draw_render_stage(i915));
+ draw_set_rasterize_stage(i915->draw, i915_draw_render_stage(i915));
i915_init_region_functions(i915);
i915_init_surface_functions(i915);
diff --git a/src/mesa/pipe/i915simple/i915_state.c b/src/mesa/pipe/i915simple/i915_state.c
index 00764902bc3..1dfa10ab28e 100644
--- a/src/mesa/pipe/i915simple/i915_state.c
+++ b/src/mesa/pipe/i915simple/i915_state.c
@@ -308,7 +308,7 @@ static void i915_bind_rasterizer_state( struct pipe_context *pipe,
i915->rasterizer = setup;
/* pass-through to draw module */
- draw_set_setup_state(i915->draw, setup);
+ draw_set_rasterizer_state(i915->draw, setup);
i915->dirty |= I915_NEW_RASTERIZER;
}