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