22 lines
602 B
WebGPU Shading Language
22 lines
602 B
WebGPU Shading Language
struct VertexOutput {
|
|
@builtin(position) position: vec4f,
|
|
@location(0) color: vec4f,
|
|
}
|
|
|
|
@group(0) @binding(0) var<uniform> mtrx: mat4x4f;
|
|
@group(0) @binding(1) var colorTexture: texture_2d<f32>;
|
|
@group(0) @binding(2) var colorSampler: sampler;
|
|
|
|
@vertex
|
|
fn vertex(@location(0) position: vec4f, @location(1) color: vec4f) -> VertexOutput {
|
|
var output: VertexOutput;
|
|
output.position = mtrx * position;
|
|
output.color = color;
|
|
return output;
|
|
}
|
|
|
|
@fragment
|
|
fn fragment(@location(0) color: vec4f) -> @location(0) vec4f {
|
|
return textureSample(colorTexture, colorSampler, color.xy);
|
|
}
|