[Mesa-dev] [PATCH 1/3] anv: Add a dummy implementation of GetPhysicalDevicePresentRectanglesKHR
Jason Ekstrand
jason at jlekstrand.net
Mon Oct 15 03:47:37 UTC 2018
Not really sure what we're supposed to do with this one but we should do
something.
---
src/intel/vulkan/anv_wsi.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/src/intel/vulkan/anv_wsi.c b/src/intel/vulkan/anv_wsi.c
index 5ed1d711689..4f3f3fc57af 100644
--- a/src/intel/vulkan/anv_wsi.c
+++ b/src/intel/vulkan/anv_wsi.c
@@ -294,3 +294,14 @@ VkResult anv_GetDeviceGroupSurfacePresentModesKHR(
return VK_SUCCESS;
}
+
+VkResult anv_GetPhysicalDevicePresentRectanglesKHR(
+ VkPhysicalDevice physicalDevice,
+ VkSurfaceKHR surface,
+ uint32_t* pRectCount,
+ VkRect2D* pRects)
+{
+ /* TODO: What should I be doing here? */
+ *pRectCount = 0;
+ return VK_SUCCESS;
+}
--
2.19.1
More information about the mesa-dev
mailing list