1 --- a/src/amd/vulkan/radv_physical_device.c
2 +++ b/src/amd/vulkan/radv_physical_device.c
3 @@ -111,13 +111,7 @@ radv_filter_minmax_enabled(const struct radv_physical_device *pdev)
5 radv_enable_rt(const struct radv_physical_device *pdev, bool rt_pipelines)
7 - if (pdev->info.gfx_level < GFX10_3 && !radv_emulate_rt(pdev))
10 - if (rt_pipelines && pdev->use_llvm)
14 + return false; // until reasonable or full hardware implementation
18 @@ -791,7 +785,7 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
19 .multiViewport = true,
20 .samplerAnisotropy = true,
21 .textureCompressionETC2 = pdev->info.has_etc_support || pdev->emulate_etc2,
22 - .textureCompressionASTC_LDR = pdev->emulate_astc,
23 + .textureCompressionASTC_LDR = false, // until really obsolete, or reasonable implementation
24 .textureCompressionBC = true,
25 .occlusionQueryPrecise = true,
26 .pipelineStatisticsQuery = true,