diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-15 18:03:22 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-17 15:32:11 -0600 |
| commit | 1000fe1fc7c0d45edc21cef96ca3ccfc3cb0aed4 (patch) | |
| tree | e4049387428fcf70bd25f056e336ab01f86c8c79 /vulkan.py | |
| parent | 1e47e4b481b5a4a0891ad3e0db1683be49dfbdf2 (diff) | |
| download | usermoji-1000fe1fc7c0d45edc21cef96ca3ccfc3cb0aed4.tar.xz | |
Bug 14643: use VkClearDepthStencilValue
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -901,8 +901,7 @@ core = Extension( [Param("VkCmdBuffer", "cmdBuffer"), Param("VkImage", "image"), Param("VkImageLayout", "imageLayout"), - Param("float", "depth"), - Param("uint32_t", "stencil"), + Param("const VkClearDepthStencilValue*", "pDepthStencil"), Param("uint32_t", "rangeCount"), Param("const VkImageSubresourceRange*", "pRanges")]), @@ -918,8 +917,7 @@ core = Extension( [Param("VkCmdBuffer", "cmdBuffer"), Param("VkImageAspectFlags", "imageAspectMask"), Param("VkImageLayout", "imageLayout"), - Param("float", "depth"), - Param("uint32_t", "stencil"), + Param("const VkClearDepthStencilValue*", "pDepthStencil"), Param("uint32_t", "rectCount"), Param("const VkRect3D*", "pRects")]), |
