diff options
author | Sergii Romantsov <sergii.romantsov@gmail.com> | 2018-04-02 09:59:06 +0300 |
---|---|---|
committer | Kenneth Graunke <kenneth@whitecape.org> | 2018-04-03 22:48:09 -0700 |
commit | 98b860e3115ff937152dbf4c843e1ecb9244734c (patch) | |
tree | a7670d5a897003b059e5e6746f192be1f8574186 | |
parent | 800df942eadc5356840f5cbc2ceaa8a65c01ee91 (diff) |
i965: Extend the negative 32-bit deltas to 64-bits
Gen8+ use 48-bit address relocations so need to extend the sign
to 64-bit return value. Without it we have higher bits zeroed
and missing the negavive values.
Haswell and older use 32-bit deltas so are unaffected by this issue.
v2:
used int32_t fucntion parameter instead of explicit type conversion.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=101408
Signed-off-by: Sergii Romantsov <sergii.romantsov@globallogic.com>
Tested-by: Andriy Khulap <andriy.khulap@globallogic.com>
Tested-by: Stuart Young <cefiar@gmail.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Kenneth Graunke <kenneth@whitecape.org>
Cc: "18.0 17.3" <mesa-stable@lists.freedesktop.org>
-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 ebc02ff38979..7286140bcc9b 100644 --- a/src/mesa/drivers/dri/i965/intel_batchbuffer.c +++ b/src/mesa/drivers/dri/i965/intel_batchbuffer.c @@ -1079,7 +1079,7 @@ brw_batch_references(struct intel_batchbuffer *batch, struct brw_bo *bo) static uint64_t emit_reloc(struct intel_batchbuffer *batch, struct brw_reloc_list *rlist, uint32_t offset, - struct brw_bo *target, uint32_t target_offset, + struct brw_bo *target, int32_t target_offset, unsigned int reloc_flags) { assert(target != NULL); |