diff options
| author | Jon Ashburn <jon@lunarg.com> | 2015-12-30 14:06:55 -0700 |
|---|---|---|
| committer | Jon Ashburn <jon@lunarg.com> | 2015-12-31 09:30:03 -0700 |
| commit | 19255f8af23c5fbc89d44d7bb35fb2d873bd63a5 (patch) | |
| tree | 90311a2588e76040b0863844bca60825a9f204a3 /vulkan.py | |
| parent | 7ce1eb5906dace0f2f9fa78706c92161ddcd4027 (diff) | |
| download | usermoji-19255f8af23c5fbc89d44d7bb35fb2d873bd63a5.tar.xz | |
misc: rename startXXX to firstXXX and add firstXXX param to setviewport/scissor
Header file changes going to 213 version
Diffstat (limited to 'vulkan.py')
| -rwxr-xr-x | vulkan.py | 13 |
1 files changed, 8 insertions, 5 deletions
@@ -20,7 +20,8 @@ # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER # DEALINGS IN THE SOFTWARE. # -# Author: Cody Northrop <cody@lunarg.com> +# Author: Chia-I Wu <olv@lunarg.com> +# Author: Jon Ashburn <jon@lunarg.com> # Author: Courtney Goeltzenleuchter <courtney@LunarG.com> # Author: Tobin Ehlis <tobin@lunarg.com> # Author: Tony Barbour <tony@LunarG.com> @@ -479,7 +480,7 @@ core = Extension( Proto("VkResult", "GetQueryPoolResults", [Param("VkDevice", "device"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "startQuery"), + Param("uint32_t", "firstQuery"), Param("uint32_t", "queryCount"), Param("size_t", "dataSize"), Param("void*", "pData"), @@ -730,11 +731,13 @@ core = Extension( Proto("void", "CmdSetViewport", [Param("VkCommandBuffer", "commandBuffer"), + Param("uint32_t", "firstViewport"), Param("uint32_t", "viewportCount"), Param("const VkViewport*", "pViewports")]), Proto("void", "CmdSetScissor", [Param("VkCommandBuffer", "commandBuffer"), + Param("uint32_t", "firstScissor"), Param("uint32_t", "scissorCount"), Param("const VkRect2D*", "pScissors")]), @@ -790,7 +793,7 @@ core = Extension( Proto("void", "CmdBindVertexBuffers", [Param("VkCommandBuffer", "commandBuffer"), - Param("uint32_t", "startBinding"), + Param("uint32_t", "firstBinding"), Param("uint32_t", "bindingCount"), Param("const VkBuffer*", "pBuffers"), Param("const VkDeviceSize*", "pOffsets")]), @@ -964,7 +967,7 @@ core = Extension( Proto("void", "CmdResetQueryPool", [Param("VkCommandBuffer", "commandBuffer"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "startQuery"), + Param("uint32_t", "firstQuery"), Param("uint32_t", "queryCount")]), Proto("void", "CmdWriteTimestamp", @@ -976,7 +979,7 @@ core = Extension( Proto("void", "CmdCopyQueryPoolResults", [Param("VkCommandBuffer", "commandBuffer"), Param("VkQueryPool", "queryPool"), - Param("uint32_t", "startQuery"), + Param("uint32_t", "firstQuery"), Param("uint32_t", "queryCount"), Param("VkBuffer", "dstBuffer"), Param("VkDeviceSize", "dstOffset"), |
