diff options
author | Eric Anholt <[email protected]> | 2011-10-14 13:52:31 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2011-10-28 11:31:11 -0700 |
commit | 339c1731c346f21bf212e4d94d57d09d8cbfc9f4 (patch) | |
tree | 6c26d65cf724a8652c29caee83d8947fd5e04e3d /src/mesa/drivers/dri/radeon/radeon_common_context.h | |
parent | cab45780248f5d38954d9c9e553246c7f488ef0f (diff) |
radeon: Simplify cliprects computation now that there's just 1.
This can probably be reduced even further by moving this logic to the
scissor state update or just removing the logic entirely, but I don't
trust myself in radeon quite that much.
Diffstat (limited to 'src/mesa/drivers/dri/radeon/radeon_common_context.h')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_common_context.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_common_context.h b/src/mesa/drivers/dri/radeon/radeon_common_context.h index ef39913b24a..2b478e1ee0c 100644 --- a/src/mesa/drivers/dri/radeon/radeon_common_context.h +++ b/src/mesa/drivers/dri/radeon/radeon_common_context.h @@ -457,9 +457,7 @@ struct radeon_context { GLuint NewGLState; DECLARE_RENDERINPUTS(tnl_index_bitset); /* index of bits for last tnl_install_attrs */ - /* Drawable, cliprect and scissor information */ - GLuint numClipRects; /* Cliprects for the draw buffer */ - drm_clip_rect_t *pClipRects; + /* Drawable information */ unsigned int lastStamp; drm_radeon_sarea_t *sarea; /* Private SAREA data */ |