diff --git a/src/panfrost/vulkan/panvk_pass.c b/src/panfrost/vulkan/panvk_pass.c index 6505647d3a0..f19752840f4 100644 --- a/src/panfrost/vulkan/panvk_pass.c +++ b/src/panfrost/vulkan/panvk_pass.c @@ -218,5 +218,6 @@ panvk_GetRenderAreaGranularity(VkDevice _device, VkRenderPass renderPass, VkExtent2D *pGranularity) { - panvk_stub(); + /* TODO: Return the actual tile size for the render pass? */ + *pGranularity = (VkExtent2D) { 1, 1 }; }