aboutsummaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan/anv_pipeline.c
diff options
context:
space:
mode:
authorSamuel Iglesias Gonsálvez <[email protected]>2017-01-04 13:11:35 +0100
committerJuan A. Suarez Romero <[email protected]>2017-01-09 10:44:07 +0100
commit465204695f99747174983c96d9e50e7c158fc22f (patch)
tree603d06536a56d1a9ad56903c4817f65efd6cb303 /src/intel/vulkan/anv_pipeline.c
parent88c8121ec9e591fee53bdd416247997eef47b40f (diff)
anv: enable float64 feature on supported platforms
v2: - Remove image_ms_array initialization (Jason) Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]> Reviewed-by: Jason Ekstrand <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_pipeline.c')
-rw-r--r--src/intel/vulkan/anv_pipeline.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c
index 196cb740d3a..2c46ef5bf96 100644
--- a/src/intel/vulkan/anv_pipeline.c
+++ b/src/intel/vulkan/anv_pipeline.c
@@ -124,10 +124,14 @@ anv_shader_compile_to_nir(struct anv_device *device,
}
}
+ const struct nir_spirv_supported_extensions supported_ext = {
+ .float64 = device->instance->physicalDevice.info.gen >= 8,
+ };
+
nir_function *entry_point =
spirv_to_nir(spirv, module->size / 4,
spec_entries, num_spec_entries,
- stage, entrypoint_name, NULL, nir_options);
+ stage, entrypoint_name, &supported_ext, nir_options);
nir_shader *nir = entry_point->shader;
assert(nir->stage == stage);
nir_validate_shader(nir);