video_core: Enable support_descriptor_aliasing on Turnip, disable storage atomic otherwise.
This commit is contained in:
parent
e5bdb7011b
commit
ca4bf3844e
3 changed files with 16 additions and 5 deletions
|
@ -298,11 +298,7 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, const Device& device
|
|||
profile = Shader::Profile{
|
||||
.supported_spirv = device.SupportedSpirvVersion(),
|
||||
.unified_descriptor_binding = true,
|
||||
#ifdef ANDROID
|
||||
.support_descriptor_aliasing = false,
|
||||
#else
|
||||
.support_descriptor_aliasing = true,
|
||||
#endif
|
||||
.support_descriptor_aliasing = device.IsDescriptorAliasingSupported(),
|
||||
.support_int8 = device.IsInt8Supported(),
|
||||
.support_int16 = device.IsShaderInt16Supported(),
|
||||
.support_int64 = device.IsShaderInt64Supported(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue