mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 06:49:58 +00:00
vk_pipeline_cache: Enable int8 and int16 types on Vulkan
This commit is contained in:
parent
1c9307969c
commit
01e18581b9
1 changed files with 2 additions and 0 deletions
|
@ -128,6 +128,8 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, Tegra::Engines::Maxw
|
||||||
.supported_spirv = device.IsKhrSpirv1_4Supported() ? 0x00010400U : 0x00010000U,
|
.supported_spirv = device.IsKhrSpirv1_4Supported() ? 0x00010400U : 0x00010000U,
|
||||||
.unified_descriptor_binding = true,
|
.unified_descriptor_binding = true,
|
||||||
.support_descriptor_aliasing = true,
|
.support_descriptor_aliasing = true,
|
||||||
|
.support_int8 = true,
|
||||||
|
.support_int16 = true,
|
||||||
.support_vertex_instance_id = false,
|
.support_vertex_instance_id = false,
|
||||||
.support_float_controls = true,
|
.support_float_controls = true,
|
||||||
.support_separate_denorm_behavior = float_control.denormBehaviorIndependence ==
|
.support_separate_denorm_behavior = float_control.denormBehaviorIndependence ==
|
||||||
|
|
Loading…
Reference in a new issue