diff options
author | Jason Ekstrand <[email protected]> | 2017-01-24 15:13:31 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-04-03 13:51:08 -0700 |
commit | 0817110969e35eb265dc41fc5fd5d2fe2236db17 (patch) | |
tree | 1d426fefc057bf60e99e17b3e34a853504acb335 /src/intel/vulkan/anv_device.c | |
parent | be1ecd8c6e3fbc20f62870c52b8e95ab2a5931ee (diff) |
anv: Implement VK_KHR_incremental_present
Reviewed-by: Lionel Landwerlin <[email protected]>
Reviewed-by: Daniel Stone <[email protected]>
Diffstat (limited to 'src/intel/vulkan/anv_device.c')
-rw-r--r-- | src/intel/vulkan/anv_device.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 4e4fa195a7c..37b6f7273b1 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -270,7 +270,11 @@ static const VkExtensionProperties device_extensions[] = { { .extensionName = VK_KHR_DESCRIPTOR_UPDATE_TEMPLATE_EXTENSION_NAME, .specVersion = 1, - } + }, + { + .extensionName = VK_KHR_INCREMENTAL_PRESENT_EXTENSION_NAME, + .specVersion = 1, + }, }; static void * |