diff options
author | José Fonseca <[email protected]> | 2007-10-31 13:20:01 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2007-10-31 13:20:01 +0000 |
commit | 13acc263859a4b4689f519be8b5519c784baf3ba (patch) | |
tree | 1f58076d1ffe1dce3477d6e2420ecb28156900ca /src/mesa/pipe/i915simple/i915_reg.h | |
parent | 520c71161ad0929a4b43e8e1e75067e10920f596 (diff) |
Chain vertex buffers into the batch buffer.
Diffstat (limited to 'src/mesa/pipe/i915simple/i915_reg.h')
-rw-r--r-- | src/mesa/pipe/i915simple/i915_reg.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mesa/pipe/i915simple/i915_reg.h b/src/mesa/pipe/i915simple/i915_reg.h index f4070ef93e8..04620fec681 100644 --- a/src/mesa/pipe/i915simple/i915_reg.h +++ b/src/mesa/pipe/i915simple/i915_reg.h @@ -907,6 +907,10 @@ #define MI_WAIT_FOR_PLANE_B_FLIP (1<<6) #define MI_WAIT_FOR_PLANE_A_FLIP (1<<2) +#define MI_BATCH_BUFFER (0x30<<23) +#define MI_BATCH_BUFFER_START (0x31<<23) +#define MI_BATCH_BUFFER_END (0xa<<23) + #define COMPAREFUNC_ALWAYS 0 |