mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
aco: fix alignment check in emit_load
align_offset already takes const_offset into consideration. Remove the
adjustment.
Fixes: 542733dbbf ("aco: add emit_load helper")
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9097
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/23242>
This commit is contained in:
parent
25c1f325d0
commit
750d641ca6
1 changed files with 1 additions and 1 deletions
|
|
@ -4058,7 +4058,7 @@ emit_load(isel_context* ctx, Builder& bld, const LoadEmitInfo& info,
|
|||
unsigned const_offset = info.const_offset;
|
||||
|
||||
const unsigned align_mul = info.align_mul ? info.align_mul : component_size;
|
||||
unsigned align_offset = (info.align_offset + const_offset) % align_mul;
|
||||
unsigned align_offset = info.align_offset % align_mul;
|
||||
|
||||
unsigned bytes_read = 0;
|
||||
while (bytes_read < load_size) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue