diff options
author | Keith Whitwell <[email protected]> | 2009-11-04 21:05:34 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-11-04 21:05:34 +0000 |
commit | b8bb48f4528227e36400cd1599a82bb73415ef60 (patch) | |
tree | e5bf65589701c16dbfbc0b0edea6f67ea1cdb31f /src/gallium/drivers/i965/brw_batchbuffer.h | |
parent | c5ed7b6e76a71d34e4a42ebfca092bd99cb39438 (diff) |
i965g: fix up batchbuffer confusion
Diffstat (limited to 'src/gallium/drivers/i965/brw_batchbuffer.h')
-rw-r--r-- | src/gallium/drivers/i965/brw_batchbuffer.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_batchbuffer.h b/src/gallium/drivers/i965/brw_batchbuffer.h index 61374ffb006..1828324cc09 100644 --- a/src/gallium/drivers/i965/brw_batchbuffer.h +++ b/src/gallium/drivers/i965/brw_batchbuffer.h @@ -35,7 +35,8 @@ struct brw_batchbuffer { * XXX: is this still necessary? * XXX: if so, can this be hidden inside the GEM-specific winsys code? */ - uint8_t *buffer; + boolean use_malloc_buffer; + uint8_t *malloc_buffer; /** * Values exported to speed up the writing the batchbuffer, |