summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915simple/i915_batch.h
diff options
context:
space:
mode:
authorJakob Bornecrantz <wallbraker@gmail.com>2009-08-30 17:45:47 +0100
committerJakob Bornecrantz <wallbraker@gmail.com>2009-08-31 16:29:58 +0100
commitf26065215317b1d320d11f636c65d4903788b431 (patch)
treeae7930da70837426d13e14a87ab10b6c5f963f36 /src/gallium/drivers/i915simple/i915_batch.h
parentbd0c51874f6dc7610b87d55c182b696517358dbe (diff)
i915g: Don't use winsys directly in the driver
Diffstat (limited to 'src/gallium/drivers/i915simple/i915_batch.h')
-rw-r--r--src/gallium/drivers/i915simple/i915_batch.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i915simple/i915_batch.h b/src/gallium/drivers/i915simple/i915_batch.h
index c6e68ea38a..1e58c5b2a8 100644
--- a/src/gallium/drivers/i915simple/i915_batch.h
+++ b/src/gallium/drivers/i915simple/i915_batch.h
@@ -109,7 +109,7 @@ i915_batchbuffer_flush( struct i915_batchbuffer *batch,
i915_batchbuffer_reloc( i915->batch, buf, flags, delta )
#define FLUSH_BATCH(fence) do { \
- i915->winsys->batch_flush( i915->winsys, fence ); \
+ i915_batchbuffer_flush( i915->batch, fence ); \
i915->hardware_dirty = ~0; \
} while (0)