mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 02:58:05 +02:00
radv: Fix wrongly positioned paren.
Trivial.
Fixes: 9f0bfbed11 "radv: Work around non-renderable 128bpp compressed 3d textures on GFX9."
This commit is contained in:
parent
1e872d1486
commit
bba5749484
1 changed files with 1 additions and 1 deletions
|
|
@ -117,7 +117,7 @@ image_is_renderable(struct radv_device *device, struct radv_image *image)
|
|||
|
||||
if (device->physical_device->rad_info.chip_class >= GFX9 &&
|
||||
image->type == VK_IMAGE_TYPE_3D &&
|
||||
vk_format_get_blocksizebits(image->vk_format == 128) &&
|
||||
vk_format_get_blocksizebits(image->vk_format) == 128 &&
|
||||
vk_format_is_compressed(image->vk_format))
|
||||
return false;
|
||||
return true;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue