projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fd65418
)
radeon: Fix inverted test for disabling flushing of front buffer output.
author
Eric Anholt
<eric@anholt.net>
Mon, 3 Aug 2009 21:38:16 +0000
(14:38 -0700)
committer
Eric Anholt
<eric@anholt.net>
Mon, 3 Aug 2009 21:40:46 +0000
(14:40 -0700)
(corresponding fix to the intel driver one)
src/mesa/drivers/dri/radeon/radeon_common.c
patch
|
blob
|
history
diff --git
a/src/mesa/drivers/dri/radeon/radeon_common.c
b/src/mesa/drivers/dri/radeon/radeon_common.c
index 7f503a9ff71d4ac574c9bd7fd7fb94843e43168a..39f19933329c57dccde547fcfc06fb6f6dcfbcc8 100644
(file)
--- a/
src/mesa/drivers/dri/radeon/radeon_common.c
+++ b/
src/mesa/drivers/dri/radeon/radeon_common.c
@@
-1093,7
+1093,7
@@
void radeonFlush(GLcontext *ctx)
* each of N places that do rendering. This has worse performances,
* but it is much easier to get correct.
*/
- if (radeon->is_front_buffer_rendering) {
+ if (
!
radeon->is_front_buffer_rendering) {
radeon->front_buffer_dirty = GL_FALSE;
}
}