Safe Haskell | Safe-Inferred |
---|---|
Language | Haskell2010 |
Name
VK_KHR_pipeline_library - device extension
VK_KHR_pipeline_library
- Name String
VK_KHR_pipeline_library
- Extension Type
- Device extension
- Registered Extension Number
- 291
- Revision
- 1
- Ratification Status
- Ratified
- Extension and Version Dependencies; Contact
Other Extension Metadata
- Last Modified Date
- 2020-01-08
- IP Status
- No known IP claims.
- Contributors
- See contributors to
VK_KHR_ray_tracing_pipeline
- See contributors to
Description
A pipeline library is a special pipeline that cannot be bound, instead it defines a set of shaders and shader groups which can be linked into other pipelines. This extension defines the infrastructure for pipeline libraries, but does not specify the creation or usage of pipeline libraries. This is left to additional dependent extensions.
New Structures
New Enum Constants
KHR_PIPELINE_LIBRARY_SPEC_VERSION
Extending
PipelineCreateFlagBits
:Extending
StructureType
:
Version History
Revision 1, 2020-01-08 (Christoph Kubisch)
- Initial draft.
See Also
Document Notes
For more information, see the Vulkan Specification
This page is a generated document. Fixes and changes should be made to the generator scripts, not directly.
Synopsis
- data PipelineLibraryCreateInfoKHR = PipelineLibraryCreateInfoKHR {}
- type KHR_PIPELINE_LIBRARY_SPEC_VERSION = 1
- pattern KHR_PIPELINE_LIBRARY_SPEC_VERSION :: forall a. Integral a => a
- type KHR_PIPELINE_LIBRARY_EXTENSION_NAME = "VK_KHR_pipeline_library"
- pattern KHR_PIPELINE_LIBRARY_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a
Documentation
data PipelineLibraryCreateInfoKHR Source #
VkPipelineLibraryCreateInfoKHR - Structure specifying pipeline libraries to use when creating a pipeline
Valid Usage
- Each element
of
pLibraries
must have been created withPIPELINE_CREATE_LIBRARY_BIT_KHR
- If any
library in
pLibraries
was created with a shader stage withPipelineShaderStageModuleIdentifierCreateInfoEXT
andidentifierSize
not equal to 0, the pipeline must be created with thePIPELINE_CREATE_FAIL_ON_PIPELINE_COMPILE_REQUIRED_BIT
flag set - If any
element of
pLibraries
was created withPIPELINE_CREATE_DESCRIPTOR_BUFFER_BIT_EXT
, all elements must have been created withPIPELINE_CREATE_DESCRIPTOR_BUFFER_BIT_EXT
- If
pipeline
is being created withPIPELINE_CREATE_NO_PROTECTED_ACCESS_BIT_EXT
, every element ofpLibraries
must have been created withPIPELINE_CREATE_NO_PROTECTED_ACCESS_BIT_EXT
- If
pipeline
is being created withoutPIPELINE_CREATE_NO_PROTECTED_ACCESS_BIT_EXT
, every element ofpLibraries
must have been created withoutPIPELINE_CREATE_NO_PROTECTED_ACCESS_BIT_EXT
- If
pipeline
is being created withPIPELINE_CREATE_PROTECTED_ACCESS_ONLY_BIT_EXT
, every element ofpLibraries
must have been created withPIPELINE_CREATE_PROTECTED_ACCESS_ONLY_BIT_EXT
- If
pipeline
is being created withoutPIPELINE_CREATE_PROTECTED_ACCESS_ONLY_BIT_EXT
, every element ofpLibraries
must have been created withoutPIPELINE_CREATE_PROTECTED_ACCESS_ONLY_BIT_EXT
Valid Usage (Implicit)
-
sType
must beSTRUCTURE_TYPE_PIPELINE_LIBRARY_CREATE_INFO_KHR
- If
libraryCount
is not0
,pLibraries
must be a valid pointer to an array oflibraryCount
validPipeline
handles
See Also
VK_KHR_pipeline_library,
ExecutionGraphPipelineCreateInfoAMDX
,
Pipeline
,
RayTracingPipelineCreateInfoKHR
,
StructureType
Instances
type KHR_PIPELINE_LIBRARY_SPEC_VERSION = 1 Source #
pattern KHR_PIPELINE_LIBRARY_SPEC_VERSION :: forall a. Integral a => a Source #
type KHR_PIPELINE_LIBRARY_EXTENSION_NAME = "VK_KHR_pipeline_library" Source #
pattern KHR_PIPELINE_LIBRARY_EXTENSION_NAME :: forall a. (Eq a, IsString a) => a Source #