mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 05:08:08 +02:00
iris: Drop bo != NULL check from blorp 48b invalidate function.
There is always a BO.
This commit is contained in:
parent
5da37a826b
commit
262787b9bc
1 changed files with 1 additions and 1 deletions
|
|
@ -210,7 +210,7 @@ blorp_vf_invalidate_for_vb_48b_transitions(struct blorp_batch *blorp_batch,
|
|||
|
||||
for (unsigned i = 0; i < num_vbs; i++) {
|
||||
struct iris_bo *bo = addrs[i].buffer;
|
||||
uint16_t high_bits = bo ? bo->gtt_offset >> 32u : 0;
|
||||
uint16_t high_bits = bo->gtt_offset >> 32u;
|
||||
|
||||
if (high_bits != ice->state.last_vbo_high_bits[i]) {
|
||||
need_invalidate = true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue