diff --git a/src/intel/vulkan/anv_image.c b/src/intel/vulkan/anv_image.c index d2d01d6d0e8..960c205bfb3 100644 --- a/src/intel/vulkan/anv_image.c +++ b/src/intel/vulkan/anv_image.c @@ -3018,3 +3018,14 @@ anv_DestroyBufferView(VkDevice _device, VkBufferView bufferView, vk_buffer_view_destroy(&device->vk, pAllocator, &view->vk); } + +void anv_GetRenderingAreaGranularityKHR( + VkDevice _device, + const VkRenderingAreaInfoKHR* pRenderingAreaInfo, + VkExtent2D* pGranularity) +{ + *pGranularity = (VkExtent2D) { + .width = 1, + .height = 1, + }; +}