mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 00:00:11 +01:00
radv: Use getter instead of setter to extract value.
Oops ...
Fixes: 64768111c3 "radv: Handle slightly different image dimensions."
Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/3417
Reviewed-by: Dave Airlie <airlied@redhat.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6337>
This commit is contained in:
parent
09196355b2
commit
50b039590e
1 changed files with 1 additions and 1 deletions
|
|
@ -369,7 +369,7 @@ radv_patch_image_dimensions(struct radv_device *device,
|
|||
if (device->physical_device->rad_info.chip_class >= GFX10) {
|
||||
width = G_00A004_WIDTH_LO(md->metadata[3]) +
|
||||
(G_00A008_WIDTH_HI(md->metadata[4]) << 2) + 1;
|
||||
height = S_00A008_HEIGHT(md->metadata[4]) + 1;
|
||||
height = G_00A008_HEIGHT(md->metadata[4]) + 1;
|
||||
} else {
|
||||
width = G_008F18_WIDTH(md->metadata[4]) + 1;
|
||||
height = G_008F18_HEIGHT(md->metadata[4]) + 1;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue