diff options
author | Lionel Landwerlin <[email protected]> | 2018-08-26 13:52:47 +0100 |
---|---|---|
committer | Lionel Landwerlin <[email protected]> | 2019-03-07 15:08:31 +0000 |
commit | ec526d6ba0bdb996416b7479330a424ff737df81 (patch) | |
tree | 6b8787d8b6a816dfc818228b40128b316457ddb6 /src/mesa | |
parent | 3e8d5b5ed48aaa37d8b83c2203f45ce55d557351 (diff) |
intel/decoders: add address space indicator to get BOs
Some commands like MI_BATCH_BUFFER_START have this indicator.
Signed-off-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Rafael Antognolli <[email protected]>
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/drivers/dri/i965/intel_batchbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/intel_batchbuffer.c b/src/mesa/drivers/dri/i965/intel_batchbuffer.c index 8097392d22b..0c7f2527218 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -81,7 +81,7 @@ dump_validation_list(struct intel_batchbuffer *batch) } static struct gen_batch_decode_bo -decode_get_bo(void *v_brw, uint64_t address) +decode_get_bo(void *v_brw, bool ppgtt, uint64_t address) { struct brw_context *brw = v_brw; struct intel_batchbuffer *batch = &brw->batch; |