diff options
author | Chris Wilson <[email protected]> | 2011-03-01 14:46:50 +0000 |
---|---|---|
committer | Chris Wilson <[email protected]> | 2011-03-01 16:34:50 +0000 |
commit | 900a5c91eeb3acae7ee0ad331154531c4dba96e1 (patch) | |
tree | a14acdabe1d22ee26c639630bd40ee627581a06c /src/mesa/drivers/dri/i965/brw_context.h | |
parent | 9fa380ccdcf987430b9bff8e5216869e05b0aaea (diff) |
i965: Use negative relocation deltas to minimse vertex uploads
With relaxed relocation checking in the kernel, we can specify a
negative delta (i.e. pointing outside of the target bo) in order to fake
a range in a large buffer. We only then need to upload the elements used
and adjust the buffer offset such that they correspond with the indices
used in the DrawArrays.
(Depends on libdrm 0209428b3918c4336018da9293cdcbf7f8fedfb6)
Signed-off-by: Chris Wilson <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_context.h b/src/mesa/drivers/dri/i965/brw_context.h index 2e8561d36a6..897220b6ea3 100644 --- a/src/mesa/drivers/dri/i965/brw_context.h +++ b/src/mesa/drivers/dri/i965/brw_context.h @@ -460,7 +460,7 @@ struct brw_context GLboolean has_negative_rhw_bug; GLboolean has_aa_line_parameters; GLboolean has_pln; -; + struct { struct brw_state_flags dirty; |