{-# language CPP #-} -- | = Name -- -- VK_EXT_extended_dynamic_state - device extension -- -- == VK_EXT_extended_dynamic_state -- -- [__Name String__] -- @VK_EXT_extended_dynamic_state@ -- -- [__Extension Type__] -- Device extension -- -- [__Registered Extension Number__] -- 268 -- -- [__Revision__] -- 1 -- -- [__Extension and Version Dependencies__] -- -- - Requires Vulkan 1.0 -- -- - Requires @VK_KHR_get_physical_device_properties2@ -- -- [__Deprecation state__] -- -- - /Promoted/ to -- -- -- [__Contact__] -- -- - Piers Daniell -- > > -- -- == Other Extension Metadata -- -- [__Last Modified Date__] -- 2019-12-09 -- -- [__Interactions and External Dependencies__] -- -- - Promoted to Vulkan 1.3 Core -- -- [__IP Status__] -- No known IP claims. -- -- [__Contributors__] -- -- - Dan Ginsburg, Valve Corporation -- -- - Graeme Leese, Broadcom -- -- - Hans-Kristian Arntzen, Valve Corporation -- -- - Jan-Harald Fredriksen, Arm Limited -- -- - Jason Ekstrand, Intel -- -- - Jeff Bolz, NVIDIA -- -- - Jesse Hall, Google -- -- - Philip Rebohle, Valve Corporation -- -- - Stuart Smith, Imagination Technologies -- -- - Tobias Hector, AMD -- -- == Description -- -- This extension adds some more dynamic state to support applications that -- need to reduce the number of pipeline state objects they compile and -- bind. -- -- == New Commands -- -- - 'cmdBindVertexBuffers2EXT' -- -- - 'cmdSetCullModeEXT' -- -- - 'cmdSetDepthBoundsTestEnableEXT' -- -- - 'cmdSetDepthCompareOpEXT' -- -- - 'cmdSetDepthTestEnableEXT' -- -- - 'cmdSetDepthWriteEnableEXT' -- -- - 'cmdSetFrontFaceEXT' -- -- - 'cmdSetPrimitiveTopologyEXT' -- -- - 'cmdSetScissorWithCountEXT' -- -- - 'cmdSetStencilOpEXT' -- -- - 'cmdSetStencilTestEnableEXT' -- -- - 'cmdSetViewportWithCountEXT' -- -- == New Structures -- -- - Extending -- 'Vulkan.Core11.Promoted_From_VK_KHR_get_physical_device_properties2.PhysicalDeviceFeatures2', -- 'Vulkan.Core10.Device.DeviceCreateInfo': -- -- - 'PhysicalDeviceExtendedDynamicStateFeaturesEXT' -- -- == New Enum Constants -- -- - 'EXT_EXTENDED_DYNAMIC_STATE_EXTENSION_NAME' -- -- - 'EXT_EXTENDED_DYNAMIC_STATE_SPEC_VERSION' -- -- - Extending 'Vulkan.Core10.Enums.DynamicState.DynamicState': -- -- - 'DYNAMIC_STATE_CULL_MODE_EXT' -- -- - 'DYNAMIC_STATE_DEPTH_BOUNDS_TEST_ENABLE_EXT' -- -- - 'DYNAMIC_STATE_DEPTH_COMPARE_OP_EXT' -- -- - 'DYNAMIC_STATE_DEPTH_TEST_ENABLE_EXT' -- -- - 'DYNAMIC_STATE_DEPTH_WRITE_ENABLE_EXT' -- -- - 'DYNAMIC_STATE_FRONT_FACE_EXT' -- -- - 'DYNAMIC_STATE_PRIMITIVE_TOPOLOGY_EXT' -- -- - 'DYNAMIC_STATE_SCISSOR_WITH_COUNT_EXT' -- -- - 'DYNAMIC_STATE_STENCIL_OP_EXT' -- -- - 'DYNAMIC_STATE_STENCIL_TEST_ENABLE_EXT' -- -- - 'DYNAMIC_STATE_VERTEX_INPUT_BINDING_STRIDE_EXT' -- -- - 'DYNAMIC_STATE_VIEWPORT_WITH_COUNT_EXT' -- -- - Extending 'Vulkan.Core10.Enums.StructureType.StructureType': -- -- - 'Vulkan.Core10.Enums.StructureType.STRUCTURE_TYPE_PHYSICAL_DEVICE_EXTENDED_DYNAMIC_STATE_FEATURES_EXT' -- -- == Promotion to Vulkan 1.3 -- -- This extension has been partially promoted. All dynamic state enumerants -- and entry points in this extension are included in core Vulkan 1.3, with -- the EXT suffix omitted. The feature structure is not promoted. Extension -- interfaces that were promoted remain available as aliases of the core -- functionality. -- -- == Version History -- -- - Revision 1, 2019-12-09 (Piers Daniell) -- -- - Internal revisions -- -- == See Also -- -- 'PhysicalDeviceExtendedDynamicStateFeaturesEXT', -- 'cmdBindVertexBuffers2EXT', 'cmdSetCullModeEXT', -- 'cmdSetDepthBoundsTestEnableEXT', 'cmdSetDepthCompareOpEXT', -- 'cmdSetDepthTestEnableEXT', 'cmdSetDepthWriteEnableEXT', -- 'cmdSetFrontFaceEXT', 'cmdSetPrimitiveTopologyEXT', -- 'cmdSetScissorWithCountEXT', 'cmdSetStencilOpEXT', -- 'cmdSetStencilTestEnableEXT', 'cmdSetViewportWithCountEXT' -- -- == Document Notes -- -- For more information, see the -- -- -- This page is a generated document. Fixes and changes should be made to -- the generator scripts, not directly. module Vulkan.Extensions.VK_EXT_extended_dynamic_state (PhysicalDeviceExtendedDynamicStateFeaturesEXT) where import Vulkan.CStruct (FromCStruct) import Vulkan.CStruct (ToCStruct) import Data.Kind (Type) data PhysicalDeviceExtendedDynamicStateFeaturesEXT instance ToCStruct PhysicalDeviceExtendedDynamicStateFeaturesEXT instance Show PhysicalDeviceExtendedDynamicStateFeaturesEXT instance FromCStruct PhysicalDeviceExtendedDynamicStateFeaturesEXT