mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-30 10:00:14 +01:00
nvk: Implement GetRenderingAreaGranularityKHR
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24326>
This commit is contained in:
parent
8636597c4a
commit
40ab58035e
1 changed files with 9 additions and 0 deletions
|
|
@ -507,6 +507,15 @@ nil_to_nv9097_samples_mode(enum nil_sample_layout sample_layout)
|
|||
return nil_to_nv9097[sample_layout];
|
||||
}
|
||||
|
||||
VKAPI_ATTR void VKAPI_CALL
|
||||
nvk_GetRenderingAreaGranularityKHR(
|
||||
VkDevice device,
|
||||
const VkRenderingAreaInfoKHR *pRenderingAreaInfo,
|
||||
VkExtent2D *pGranularity)
|
||||
{
|
||||
*pGranularity = (VkExtent2D) { .width = 1, .height = 1 };
|
||||
}
|
||||
|
||||
void
|
||||
nvk_CmdBeginRendering(VkCommandBuffer commandBuffer,
|
||||
const VkRenderingInfo *pRenderingInfo)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue