Enum gfx::pso::InitError
[−]
[src]
pub enum InitError { VertexImport(AttributeSlot, Option<Format>), ConstantBuffer(ConstantBufferSlot, Option<()>), GlobalConstant(Location, Option<()>), ResourceView(ResourceViewSlot, Option<()>), UnorderedView(UnorderedViewSlot, Option<()>), Sampler(SamplerSlot, Option<()>), PixelExport(ColorSlot, Option<Format>), }
Failure to initilize the link between the shader and the data.
Variants
VertexImport | Vertex attribute mismatch. | |
ConstantBuffer | Constant buffer mismatch. | |
GlobalConstant | Global constant mismatch. | |
ResourceView | Shader resource view mismatch. | |
UnorderedView | Unordered access view mismatch. | |
Sampler | Sampler mismatch. | |
PixelExport | Pixel target mismatch. |