diff options
author | Owain G. Ainsworth <oga@openbsd.org> | 2010-03-01 14:50:51 +0000 |
---|---|---|
committer | Owain G. Ainsworth <oga@openbsd.org> | 2010-03-01 14:50:51 +0000 |
commit | 522fbbee7e3101880975a1b80a7cb1ca2fd5714e (patch) | |
tree | f51233fc3ece548c69c7fb8270016bdee00fc378 /src/i965_render.c | |
parent | 4a83074c013847bf5c9ed3492cf0cfa35ba808c5 (diff) |
conf: Add debugging flush options
Make the following options available via xorg.conf:
Section "Driver"
Option "DebugFlushBatches" "1" # Flush the batch buffer after every
# single operation;
Option "DebugFlushCaches" "1" # Include a MI_FLUSH at the end of every
# batch buffer to force data to be
# flushed out of cache and into memory
# before the completion of the batch.
Option "DebugWait" "1" # Wait for the completion of every batch buffer
# before continuing, i.e. perform synchronous
# rendering.
EndSection
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
(cherry picked from commit 3c0815abf28744e215bea286e71d935cd486955a)
Conflicts:
src/i830.h
src/i830_batchbuffer.c
src/i830_driver.c
Diffstat (limited to 'src/i965_render.c')
-rw-r--r-- | src/i965_render.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/i965_render.c b/src/i965_render.c index d283637d..710bd9db 100644 --- a/src/i965_render.c +++ b/src/i965_render.c @@ -1800,8 +1800,6 @@ i965_composite(PixmapPtr dest, int srcX, int srcY, int maskX, int maskY, drm_intel_bo_unreference(vb_bo); intel_batch_end_atomic(scrn); - - i830_debug_sync(scrn); } void i965_batch_flush_notify(ScrnInfoPtr scrn) |