Procházet zdrojové kódy

vk_pipeline_cache: Enable int8 and int16 types on Vulkan

ReinUsesLisp před 5 roky
rodič
revize
01e18581b9

+ 2 - 0
src/video_core/renderer_vulkan/vk_pipeline_cache.cpp

@@ -128,6 +128,8 @@ PipelineCache::PipelineCache(RasterizerVulkan& rasterizer_, Tegra::Engines::Maxw
         .supported_spirv = device.IsKhrSpirv1_4Supported() ? 0x00010400U : 0x00010000U,
         .unified_descriptor_binding = true,
         .support_descriptor_aliasing = true,
+        .support_int8 = true,
+        .support_int16 = true,
         .support_vertex_instance_id = false,
         .support_float_controls = true,
         .support_separate_denorm_behavior = float_control.denormBehaviorIndependence ==