summaryrefslogtreecommitdiffstats
path: root/examples/integration/src/shader/frag.wgsl
blob: cf27bb5639c12c184fe8c67a6a86958670b9fd4e (plain) (blame)
1
2
3
4
@fragment
fn main() -> @location(0) vec4<f32> {
    return vec4<f32>(1.0, 0.0, 0.0, 1.0);
}