mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-26 15:30:40 +02:00
radv: report textureCompressionASTC_HDR as not supported
To fix a mismatch with dEQP-VK.api.info.get_physical_device_properties2.features. Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com> Reviewed-by: Bas Nieuwenhuizen <bas@basnieuwenhuizen.nl> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14707>
This commit is contained in:
parent
2d12041967
commit
9be4d36d5f
1 changed files with 6 additions and 0 deletions
|
|
@ -1654,6 +1654,12 @@ radv_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
|
|||
features->taskShader = false; /* TODO */
|
||||
break;
|
||||
}
|
||||
case VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TEXTURE_COMPRESSION_ASTC_HDR_FEATURES: {
|
||||
VkPhysicalDeviceTextureCompressionASTCHDRFeatures *features =
|
||||
(VkPhysicalDeviceTextureCompressionASTCHDRFeatures *)ext;
|
||||
features->textureCompressionASTC_HDR = false;
|
||||
break;
|
||||
}
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue