diff options
author | Jason Ekstrand <[email protected]> | 2017-03-22 17:43:10 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-05-03 11:25:46 -0700 |
commit | 272b7e7d25d54ed7c428bde6977dcc2a57299dad (patch) | |
tree | f205cff05e245327fd535464a6812f78f4bb11e2 /src | |
parent | 3dbd7737d44345b1ae3629d50b009307534a84a6 (diff) |
anv: Enable VK_KHX_multiview and SPV_KHR_multiview
Reviewed-by: Iago Toral Quiroga <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 4 | ||||
-rw-r--r-- | src/intel/vulkan/anv_pipeline.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index d9fbfefe317..fc5baac0ac0 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -370,6 +370,10 @@ static const VkExtensionProperties device_extensions[] = { .extensionName = VK_KHX_EXTERNAL_MEMORY_FD_EXTENSION_NAME, .specVersion = 1, }, + { + .extensionName = VK_KHX_MULTIVIEW_EXTENSION_NAME, + .specVersion = 1, + }, }; static void * diff --git a/src/intel/vulkan/anv_pipeline.c b/src/intel/vulkan/anv_pipeline.c index 643db9cb9f2..e96e2fcedba 100644 --- a/src/intel/vulkan/anv_pipeline.c +++ b/src/intel/vulkan/anv_pipeline.c @@ -128,6 +128,7 @@ anv_shader_compile_to_nir(struct anv_pipeline *pipeline, .tessellation = true, .draw_parameters = true, .image_write_without_format = true, + .multiview = true, }; nir_function *entry_point = |