diff options
author | Ilia Mirkin <[email protected]> | 2016-11-30 00:56:48 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-11-30 20:49:04 -0500 |
commit | fda1d0187d2e9ea2aa9e1f4afd3c4ebccf74f668 (patch) | |
tree | 473508e0fbe9a45f58a9a62ff69f3e7de5cf8e4a | |
parent | 27433b26b197b8b69d4ca8c9aed567f04950648e (diff) |
anv: expose support for VK_KHR_sampler_mirror_clamp_to_edge
This is already supported in genX_state.c, expose the extension string.
Signed-off-by: Ilia Mirkin <[email protected]>
Reviewed-by: Jason Ekstrand <[email protected]>
-rw-r--r-- | src/intel/vulkan/anv_device.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 0b0f610ef34..d594df7d3be 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -260,6 +260,10 @@ static const VkExtensionProperties device_extensions[] = { .extensionName = VK_KHR_SWAPCHAIN_EXTENSION_NAME, .specVersion = 68, }, + { + .extensionName = VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME, + .specVersion = 1, + } }; static void * |