From 5e4125d22120c99efe93e9ed44e671c42a5486dc Mon Sep 17 00:00:00 2001 From: Cody Northrop Date: Wed, 26 Aug 2015 10:01:32 -0600 Subject: v156: Bug 14451 - Rename dynamic state objects --- vulkan.py | 72 +++++++++++++++++++++++++++++++-------------------------------- 1 file changed, 36 insertions(+), 36 deletions(-) (limited to 'vulkan.py') diff --git a/vulkan.py b/vulkan.py index 086d2771..959d8e9f 100755 --- a/vulkan.py +++ b/vulkan.py @@ -209,10 +209,10 @@ core = Extension( "VkDescriptorPool", "VkDescriptorSet", "VkDynamicViewportState", - "VkDynamicRasterLineState", - "VkDynamicRasterDepthBiasState", - "VkDynamicColorBlendState", - "VkDynamicDepthState", + "VkDynamicLineWidthState", + "VkDynamicDepthBiasState", + "VkDynamicBlendState", + "VkDynamicDepthBoundsState", "VkDynamicStencilState", "VkRenderPass", "VkFramebuffer", @@ -674,41 +674,41 @@ core = Extension( [Param("VkDevice", "device"), Param("VkDynamicViewportState", "dynamicViewportState")]), - Proto("VkResult", "CreateDynamicRasterLineState", + Proto("VkResult", "CreateDynamicLineWidthState", [Param("VkDevice", "device"), - Param("const VkDynamicRasterLineStateCreateInfo*", "pCreateInfo"), - Param("VkDynamicRasterLineState*", "pState")]), + Param("const VkDynamicLineWidthStateCreateInfo*", "pCreateInfo"), + Param("VkDynamicLineWidthState*", "pState")]), - Proto("VkResult", "DestroyDynamicRasterLineState", + Proto("VkResult", "DestroyDynamicLineWidthState", [Param("VkDevice", "device"), - Param("VkDynamicRasterLineState", "dynamicRasterLineState")]), + Param("VkDynamicLineWidthState", "dynamicLineWidthState")]), - Proto("VkResult", "CreateDynamicRasterDepthBiasState", + Proto("VkResult", "CreateDynamicDepthBiasState", [Param("VkDevice", "device"), - Param("const VkDynamicRasterDepthBiasStateCreateInfo*", "pCreateInfo"), - Param("VkDynamicRasterDepthBiasState*", "pState")]), + Param("const VkDynamicDepthBiasStateCreateInfo*", "pCreateInfo"), + Param("VkDynamicDepthBiasState*", "pState")]), - Proto("VkResult", "DestroyDynamicRasterDepthBiasState", + Proto("VkResult", "DestroyDynamicDepthBiasState", [Param("VkDevice", "device"), - Param("VkDynamicRasterDepthBiasState", "dynamicRasterDepthBiasState")]), + Param("VkDynamicDepthBiasState", "dynamicDepthBiasState")]), - Proto("VkResult", "CreateDynamicColorBlendState", + Proto("VkResult", "CreateDynamicBlendState", [Param("VkDevice", "device"), - Param("const VkDynamicColorBlendStateCreateInfo*", "pCreateInfo"), - Param("VkDynamicColorBlendState*", "pState")]), + Param("const VkDynamicBlendStateCreateInfo*", "pCreateInfo"), + Param("VkDynamicBlendState*", "pState")]), - Proto("VkResult", "DestroyDynamicColorBlendState", + Proto("VkResult", "DestroyDynamicBlendState", [Param("VkDevice", "device"), - Param("VkDynamicColorBlendState", "dynamicColorBlendState")]), + Param("VkDynamicBlendState", "DynamicBlendState")]), - Proto("VkResult", "CreateDynamicDepthState", + Proto("VkResult", "CreateDynamicDepthBoundsState", [Param("VkDevice", "device"), - Param("const VkDynamicDepthStateCreateInfo*", "pCreateInfo"), - Param("VkDynamicDepthState*", "pState")]), + Param("const VkDynamicDepthBoundsStateCreateInfo*", "pCreateInfo"), + Param("VkDynamicDepthBoundsState*", "pState")]), - Proto("VkResult", "DestroyDynamicDepthState", + Proto("VkResult", "DestroyDynamicDepthBoundsState", [Param("VkDevice", "device"), - Param("VkDynamicDepthState", "dynamicDepthState")]), + Param("VkDynamicDepthBoundsState", "dynamicDepthBoundsState")]), Proto("VkResult", "CreateDynamicStencilState", [Param("VkDevice", "device"), @@ -763,21 +763,21 @@ core = Extension( [Param("VkCmdBuffer", "cmdBuffer"), Param("VkDynamicViewportState", "dynamicViewportState")]), - Proto("void", "CmdBindDynamicRasterLineState", + Proto("void", "CmdBindDynamicLineWidthState", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkDynamicRasterLineState", "dynamicRasterLineState")]), + Param("VkDynamicLineWidthState", "dynamicLineWidthState")]), - Proto("void", "CmdBindDynamicRasterDepthBiasState", + Proto("void", "CmdBindDynamicDepthBiasState", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkDynamicRasterDepthBiasState", "dynamicRasterDepthBiasState")]), + Param("VkDynamicDepthBiasState", "dynamicDepthBiasState")]), - Proto("void", "CmdBindDynamicColorBlendState", + Proto("void", "CmdBindDynamicBlendState", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkDynamicColorBlendState", "dynamicColorBlendState")]), + Param("VkDynamicBlendState", "DynamicBlendState")]), - Proto("void", "CmdBindDynamicDepthState", + Proto("void", "CmdBindDynamicDepthBoundsState", [Param("VkCmdBuffer", "cmdBuffer"), - Param("VkDynamicDepthState", "dynamicDepthState")]), + Param("VkDynamicDepthBoundsState", "dynamicDepthBoundsState")]), Proto("void", "CmdBindDynamicStencilState", [Param("VkCmdBuffer", "cmdBuffer"), @@ -1169,10 +1169,10 @@ object_non_dispatch_list = [ "VkDescriptorPool", "VkDescriptorSet", "VkDynamicViewportState", - "VkDynamicRasterLineState", - "VkDynamicRasterDepthBiasState", - "VkDynamicColorBlendState", - "VkDynamicDepthState", + "VkDynamicLineWidthState", + "VkDynamicDepthBiasState", + "VkDynamicBlendState", + "VkDynamicDepthBoundsState", "VkDynamicStencilState", "VkRenderPass", "VkFramebuffer", -- cgit v1.2.3