mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
.. | ||
src | ||
Cargo.toml | ||
README.md |
Usage
This replaces vulkano-shaders
.
Either provide glsl source code directly as an attribute:
#[macro_use]
extern crate vulkano_shader_derive;
mod fs {
#[derive(VulkanoShader)]
#[ty = "fragment"]
#[src = "
#version 450
#extension GL_ARB_separate_shader_objects : enable
#extension GL_ARB_shading_language_450pack : enable
layout(location = 0) out vec4 f_color;
void main() {
f_color = vec4(1.0, 0.0, 0.0, 1.0);
}"]
struct Dummy;
}
let fs = fs::Shader::load(&device).expect("failed to create shader module");
Or by providing a path to a file containing the glsl code:
#[macro_use]
extern crate vulkano_shader_derive;
mod fs {
#[derive(VulkanoShader)]
#[ty = "fragment"]
#[path = "shader/fragment.glsl"]
struct Dummy;
}
let fs = fs::Shader::load(&device).expect("failed to create shader module");
Note that this file path is relative to the project's Cargo.toml, and not to the file the attribute is being used in.