diff options
author | Marek Olšák <maraeo@gmail.com> | 2010-05-29 15:27:42 +0200 |
---|---|---|
committer | Marek Olšák <maraeo@gmail.com> | 2010-05-29 15:41:22 +0200 |
commit | 1d57b6ebd186217a5c480245a36d169d357b8e67 (patch) | |
tree | 949dc2ca618642d6892bc4fdfd4f8c2475c375ac /src/gallium/drivers/r600 | |
parent | e7f0f6bb72c63fd6e6ddcb7a815be68682f1764c (diff) |
r600g: make a local copy of viewport state
Diffstat (limited to 'src/gallium/drivers/r600')
-rw-r--r-- | src/gallium/drivers/r600/r600_blit.c | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_context.h | 2 | ||||
-rw-r--r-- | src/gallium/drivers/r600/r600_state.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/r600/r600_blit.c b/src/gallium/drivers/r600/r600_blit.c index e92e928105..a257d83d3a 100644 --- a/src/gallium/drivers/r600/r600_blit.c +++ b/src/gallium/drivers/r600/r600_blit.c @@ -50,7 +50,7 @@ static void r600_blitter_save_states(struct pipe_context *ctx) util_blitter_save_vertex_elements(rctx->blitter, rctx->vertex_elements); util_blitter_save_viewport(rctx->blitter, - rctx->viewport); + &rctx->viewport); } void r600_clear(struct pipe_context *ctx, unsigned buffers, diff --git a/src/gallium/drivers/r600/r600_context.h b/src/gallium/drivers/r600/r600_context.h index b8ce8b88ca..a5149038e2 100644 --- a/src/gallium/drivers/r600/r600_context.h +++ b/src/gallium/drivers/r600/r600_context.h @@ -76,7 +76,7 @@ struct r600_context { struct pipe_stencil_ref stencil_ref; struct pipe_framebuffer_state fb_state; struct radeon_draw *draw; - struct pipe_viewport_state *viewport; + struct pipe_viewport_state viewport; }; void r600_draw_arrays(struct pipe_context *ctx, unsigned mode, diff --git a/src/gallium/drivers/r600/r600_state.c b/src/gallium/drivers/r600/r600_state.c index d57e88dd56..ff574b8285 100644 --- a/src/gallium/drivers/r600/r600_state.c +++ b/src/gallium/drivers/r600/r600_state.c @@ -309,7 +309,7 @@ static void r600_set_viewport_state(struct pipe_context *ctx, return; } radeon_draw_set_new(rctx->draw, rstate); - rctx->viewport = state; + rctx->viewport = *state; } static void r600_set_vertex_buffers(struct pipe_context *ctx, |