Trait vulkano::pipeline::shader::EntryPointAbstract[][src]

pub unsafe trait EntryPointAbstract {
    fn module(&self) -> &ShaderModule;
fn name(&self) -> &CStr;
fn layout_desc(&self) -> &PipelineLayoutDesc;
fn spec_constants(&self) -> &[SpecializationMapEntry]; }

Required methods

Returns the module this entry point comes from.

Returns the name of the entry point.

Returns the pipeline layout used by the shader stage.

Returns the layout of the specialization constants.

Implementors