diff options
author | Michel Dänzer <[email protected]> | 2007-03-29 09:42:37 +0200 |
---|---|---|
committer | Michel Dänzer <[email protected]> | 2007-04-29 13:52:48 +0200 |
commit | c409dbcae3607e6f83f50a28d9bbb51f5ad51be4 (patch) | |
tree | 9ed72037860cbd9ce5326103f3f86972e9418a18 /src/mesa/drivers/dri/r300/radeon_state.c | |
parent | cbf280dc26efa2ad6a8514cd110dcdfcb7c20bd9 (diff) |
r300: Page flipping fixes.
Mostly making sure the page flipping state is respected when necessary.
Diffstat (limited to 'src/mesa/drivers/dri/r300/radeon_state.c')
-rw-r--r-- | src/mesa/drivers/dri/r300/radeon_state.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/radeon_state.c b/src/mesa/drivers/dri/r300/radeon_state.c index 902e9583a63..82bfd951b92 100644 --- a/src/mesa/drivers/dri/r300/radeon_state.c +++ b/src/mesa/drivers/dri/r300/radeon_state.c @@ -154,7 +154,8 @@ void radeonSetCliprects(radeonContextPtr radeon) if (draw_fb->_ColorDrawBufferMask[0] == BUFFER_BIT_BACK_LEFT) { /* Can't ignore 2d windows if we are page flipping. */ - if (drawable->numBackClipRects == 0 || radeon->doPageFlip) { + if (drawable->numBackClipRects == 0 || radeon->doPageFlip || + radeon->sarea->pfCurrentPage == 1) { radeon->numClipRects = drawable->numClipRects; radeon->pClipRects = drawable->pClipRects; } else { |