diff options
| author | 2021-06-02 04:28:30 -0300 | |
|---|---|---|
| committer | 2021-07-22 21:51:34 -0400 | |
| commit | 8c954fcaee77c70583c5edc73c7c35eefcca39b0 (patch) | |
| tree | 6db41351213cdadf45c4155d379dc2f661441f7c /src | |
| parent | shader: Avoid CPU side undefined behavior on I2F (diff) | |
| download | yuzu-8c954fcaee77c70583c5edc73c7c35eefcca39b0.tar.gz yuzu-8c954fcaee77c70583c5edc73c7c35eefcca39b0.tar.xz yuzu-8c954fcaee77c70583c5edc73c7c35eefcca39b0.zip | |
vk_pipeline_cache: Set support_derivative_control to true
Diffstat (limited to 'src')
| -rw-r--r-- | src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp index 2a2f166c8..a7f3619a5 100644 --- a/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp +++ b/src/video_core/renderer_vulkan/vk_pipeline_cache.cpp | |||
| @@ -274,6 +274,7 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, Tegra::Engines::Maxw | |||
| 274 | .support_typeless_image_loads = device.IsFormatlessImageLoadSupported(), | 274 | .support_typeless_image_loads = device.IsFormatlessImageLoadSupported(), |
| 275 | .support_demote_to_helper_invocation = true, | 275 | .support_demote_to_helper_invocation = true, |
| 276 | .support_int64_atomics = device.IsExtShaderAtomicInt64Supported(), | 276 | .support_int64_atomics = device.IsExtShaderAtomicInt64Supported(), |
| 277 | .support_derivative_control = true, | ||
| 277 | 278 | ||
| 278 | .warp_size_potentially_larger_than_guest = device.IsWarpSizePotentiallyBiggerThanGuest(), | 279 | .warp_size_potentially_larger_than_guest = device.IsWarpSizePotentiallyBiggerThanGuest(), |
| 279 | 280 | ||