pub struct ShaderModule { /* private fields */ }
Expand description

Contains SPIR-V code with one or more entry points.

Note that it is advised to wrap around a ShaderModule with a struct that is different for each shader.

Implementations

Builds a new shader module from SPIR-V bytes.

Safety
  • The SPIR-V code is not validated.
  • The SPIR-V code may require some features that are not enabled. This isn’t checked by this function either.

Builds a new shader module from SPIR-V 32-bit words.

Safety
  • The SPIR-V code is not validated.
  • The SPIR-V code may require some features that are not enabled. This isn’t checked by this function either.
source

pub unsafe fn graphics_entry_point<'a, S, I, O, L>(
    &'a self,
    name: &'a CStr,
    input: I,
    output: O,
    layout: L,
    ty: GraphicsShaderType
) -> GraphicsEntryPoint<'a, S, I, O, L>

Gets access to an entry point contained in this module.

This is purely a logical operation. It returns a struct that represents the entry point but doesn’t actually do anything.

Safety
  • The user must check that the entry point exists in the module, as this is not checked by Vulkan.
  • The input, output and layout must correctly describe the input, output and layout used by this stage.
source

pub unsafe fn compute_entry_point<'a, S, L>(
    &'a self,
    name: &'a CStr,
    layout: L
) -> ComputeEntryPoint<'a, S, L>

Gets access to an entry point contained in this module.

This is purely a logical operation. It returns a struct that represents the entry point but doesn’t actually do anything.

Safety
  • The user must check that the entry point exists in the module, as this is not checked by Vulkan.
  • The layout must correctly describe the layout used by this stage.

Trait Implementations

Formats the value using the given formatter. Read more
Executes the destructor for this type. Read more
The type of the object.
The DebugReportObjectTypeEXT of the internal Vulkan handle.
Returns a reference to the object.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Builds a pointer to this type from a raw pointer.
Returns true if the size is suitable to store a type like this.
Returns the size of an individual element.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.