Module: Mesa Branch: master Commit: 8531830038de9f0d8a97d55ccf209f549b720d8c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8531830038de9f0d8a97d55ccf209f549b720d8c
Author: Bas Nieuwenhuizen <[email protected]> Date: Fri Aug 7 00:08:21 2020 +0200 radv: Add ETC2 support on RAVEN2. I did a whole bunch of validation and it essentially works. Reviewed-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/6215> --- src/amd/vulkan/radv_formats.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index 9360fb31bcc..6f7708d9b24 100644 --- a/src/amd/vulkan/radv_formats.c +++ b/src/amd/vulkan/radv_formats.c @@ -624,6 +624,7 @@ radv_device_supports_etc(struct radv_physical_device *physical_device) { return physical_device->rad_info.family == CHIP_VEGA10 || physical_device->rad_info.family == CHIP_RAVEN || + physical_device->rad_info.family == CHIP_RAVEN2 || physical_device->rad_info.family == CHIP_STONEY; } _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
