diff options
author | Jakob Bornecrantz <[email protected]> | 2009-08-30 17:45:47 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2009-08-31 16:29:58 +0100 |
commit | f26065215317b1d320d11f636c65d4903788b431 (patch) | |
tree | ae7930da70837426d13e14a87ab10b6c5f963f36 /src/gallium/drivers/i915simple/i915_batch.h | |
parent | bd0c51874f6dc7610b87d55c182b696517358dbe (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.h | 2 |
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 c6e68ea38a2..1e58c5b2a8c 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) |