ashshadercreator

A library for easy to way automatically create multiple shader stages from the directory path.

```rust use ash::Device; use std::path::Path;

let shaderstageflags = PipelineShaderStageCreateFlags::RESERVED2NV | PipelineShaderStageCreateFlags::ALLOWVARYINGSUBGROUPSIZEEXT; let shaderstagescreateinfo: Vec = ShaderStage::new(&device, &Path::new("examplepath/compiledshaders")) .withshaderstageflags(shaderstageflags) .build(); ```

What the library can do?

Important

For today, library can creates only shader stages from the names of compiled shaders that have: - For the GLSL: .vert.spv for the vertex shader and .frag.spv for the fragment shader. - For the HLSL: .vs for the vertex shader and .fs for the fragment shader.