diff --git a/docs/features.txt b/docs/features.txt index 132eb872822..7f413611935 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -456,7 +456,7 @@ Vulkan 1.2 -- all DONE: anv, nvk, tu, vn VK_KHR_driver_properties DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn) VK_KHR_image_format_list DONE (anv, dzn, hasvk, lvp, nvk, pvr, radv, tu, v3dv, vn) VK_KHR_imageless_framebuffer DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn) - VK_KHR_sampler_mirror_clamp_to_edge DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn) + VK_KHR_sampler_mirror_clamp_to_edge DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn) VK_KHR_separate_depth_stencil_layouts DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn) VK_KHR_shader_atomic_int64 DONE (anv, lvp, nvk, radv, vn) VK_KHR_shader_float16_int8 DONE (anv, dzn, nvk, hasvk, lvp, radv, tu, vn) diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index f27db154c63..3603d8e7dd5 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -72,6 +72,7 @@ get_device_extensions(const struct panvk_physical_device *device, .KHR_pipeline_executable_properties = true, .KHR_pipeline_library = true, .KHR_push_descriptor = true, + .KHR_sampler_mirror_clamp_to_edge = true, .KHR_shader_expect_assume = true, .KHR_storage_buffer_storage_class = true, #ifdef PANVK_USE_WSI_PLATFORM @@ -128,7 +129,7 @@ get_features(const struct panvk_physical_device *device, .shaderDrawParameters = false, /* Vulkan 1.2 */ - .samplerMirrorClampToEdge = false, + .samplerMirrorClampToEdge = true, .drawIndirectCount = false, .storageBuffer8BitAccess = false, .uniformAndStorageBuffer8BitAccess = false,