diff options
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_state.c')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_state.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_state.c b/src/mesa/drivers/dri/radeon/radeon_state.c index 70542f68a19..625271dd168 100644 --- a/src/mesa/drivers/dri/radeon/radeon_state.c +++ b/src/mesa/drivers/dri/radeon/radeon_state.c @@ -1386,13 +1386,18 @@ void radeonUpdateWindow( struct gl_context *ctx ) static void radeonViewport( struct gl_context *ctx, GLint x, GLint y, GLsizei width, GLsizei height ) { + (void) x; + (void) y; + (void) width; + (void) height; + /* Don't pipeline viewport changes, conflict with window offset * setting below. Could apply deltas to rescue pipelined viewport * values, or keep the originals hanging around. */ radeonUpdateWindow( ctx ); - radeon_viewport(ctx, x, y, width, height); + radeon_viewport(ctx); } static void radeonDepthRange( struct gl_context *ctx, GLclampd nearval, |