diff options
author | Ian Romanick <[email protected]> | 2013-11-05 12:38:22 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2014-01-15 10:02:47 -0800 |
commit | fbc0c9a553ecdc1d6a78a44f7c2c764dd5f172ad (patch) | |
tree | 11f3537c87e270684f89ce36455e288e48be02e1 /src | |
parent | 4fcdb75268fe844c60d9c53f0dfd38d7460dea00 (diff) |
radeon: Remove dead code
A future patch will rename some of the fields of gl_viewport_attrib, and
I don't want to update dead code that I can't test.
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Kenneth Graunke <[email protected]>
Cc: Dave Airlie <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_common.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_common.c b/src/mesa/drivers/dri/radeon/radeon_common.c index 7be0ba732a6..d083e5b0214 100644 --- a/src/mesa/drivers/dri/radeon/radeon_common.c +++ b/src/mesa/drivers/dri/radeon/radeon_common.c @@ -317,15 +317,6 @@ void radeon_draw_buffer(struct gl_context *ctx, struct gl_framebuffer *fb) _mesa_reference_renderbuffer(&radeon->state.color.rb, &rrbColor->base.Base); radeon->state.color.draw_offset = offset; -#if 0 - /* update viewport since it depends on window size */ - if (ctx->Driver.Viewport) { - ctx->Driver.Viewport(ctx, ctx->Viewport.X, ctx->Viewport.Y, - ctx->Viewport.Width, ctx->Viewport.Height); - } else { - - } -#endif ctx->NewState |= _NEW_VIEWPORT; /* Set state we know depends on drawable parameters: |