Mesa (master): radv: add support for VK_KHR_sampler_mirror_clamp_to_edge

Dave Airlie airlied at kemper.freedesktop.org
Wed Nov 23 22:22:01 UTC 2016


Module: Mesa
Branch: master
Commit: 2c748c5c8a19f331b9b96f4b4365c015d9b3e68c
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=2c748c5c8a19f331b9b96f4b4365c015d9b3e68c

Author: Fredrik Höglund <fredrik at kde.org>
Date:   Wed Nov 23 23:04:59 2016 +0100

radv: add support for VK_KHR_sampler_mirror_clamp_to_edge

radv_tex_wrap() already supports VK_SAMPLER_ADDRESS_MODE_MIRROR_CLAMP_TO_EDGE,
so all that's needed is to advertise support for the extension.

Reviewed-by: Dave Airlie <airlied at redhat.com>

---

 src/amd/vulkan/radv_device.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c
index 70c94e9..0d79eee 100644
--- a/src/amd/vulkan/radv_device.c
+++ b/src/amd/vulkan/radv_device.c
@@ -171,6 +171,10 @@ static const VkExtensionProperties global_extensions[] = {
 
 static const VkExtensionProperties device_extensions[] = {
 	{
+		.extensionName = VK_KHR_SAMPLER_MIRROR_CLAMP_TO_EDGE_EXTENSION_NAME,
+		.specVersion = 1,
+	},
+	{
 		.extensionName = VK_KHR_SWAPCHAIN_EXTENSION_NAME,
 		.specVersion = 68,
 	},




More information about the mesa-commit mailing list