diff options
author | Jason Ekstrand <[email protected]> | 2017-01-20 17:46:33 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2017-01-24 12:27:48 -0800 |
commit | a435991d3c0dd8bf177399944bfae802794695b4 (patch) | |
tree | 715ea9c5fa729102f7aefaa118209f5056f410dd /src/intel/vulkan | |
parent | 756533520e1cd246065d18ebdcd87dccf7910681 (diff) |
anv: Expose VK_KHR_maintenance1
Reviewed-by: Iago Toral Quiroga <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/vulkan')
-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 f80a36a9400..b24949c5f44 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -263,7 +263,11 @@ static const VkExtensionProperties device_extensions[] = { { .extensionName = VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME, .specVersion = 1, - } + }, + { + .extensionName = VK_KHR_MAINTENANCE1_EXTENSION_NAME, + .specVersion = 1, + }, }; static void * |