aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_context.h
diff options
context:
space:
mode:
authorChris Wilson <[email protected]>2018-09-07 14:32:05 +0100
committerChris Wilson <[email protected]>2018-09-10 09:14:46 +0100
commit44e3e6a9b403f9325f49684b9baed1854da30cec (patch)
treeab39b23729a3ae99ebb5cdc9ec7cd65c741713e7 /src/mesa/drivers/dri/i965/brw_context.h
parent2fece204c02e437811732c223cd158f82c4dd916 (diff)
i965: Bump aperture tracking to u64
As a prelude to handling large address spaces, first allow ourselves the luxury of handling the full 4G. Reported-by: Andrey Simiklit <[email protected]> Cc: Kenneth Graunke <[email protected]> Reviewed-by: Kenneth Graunke <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_context.h')
-rw-r--r--src/mesa/drivers/dri/i965/brw_context.h2
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 bf2cddebdc6..7fd15669eb9 100644
--- a/src/mesa/drivers/dri/i965/brw_context.h
+++ b/src/mesa/drivers/dri/i965/brw_context.h
@@ -514,7 +514,7 @@ struct intel_batchbuffer {
int exec_array_size;
/** The amount of aperture space (in bytes) used by all exec_bos */
- int aperture_space;
+ uint64_t aperture_space;
struct {
uint32_t *map_next;