From: Iago Toral Quiroga Date: Fri, 2 Mar 2018 10:12:38 +0000 (+0100) Subject: anv/pipeline: support SpvCapabilityInt16 in gen8+ X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=002cb6f2b330434763b0fd8a51ac2f0eb8f5d65f;p=mesa.git anv/pipeline: support SpvCapabilityInt16 in gen8+ Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 56bea7bf0df..87788de10a5 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -144,6 +144,7 @@ anv_shader_compile_to_nir(struct anv_pipeline *pipeline, .multiview = true, .variable_pointers = true, .storage_16bit = device->instance->physicalDevice.info.gen >= 8, + .int16 = device->instance->physicalDevice.info.gen >= 8, .shader_viewport_index_layer = true, .subgroup_arithmetic = true, .subgroup_basic = true,