learn-wgpu/code/showcase/pong/res/shaders/textured.frag.wgsl
2021-10-22 15:55:39 -06:00

18 lines
288 B
WebGPU Shading Language

struct FragmentOutput {
[[location(0)]] fColor: vec4<f32>;
};
var<private> fColor: vec4<f32>;
fn main1() {
fColor = vec4<f32>(f32(1));
return;
}
[[stage(fragment)]]
fn main() -> FragmentOutput {
main1();
let e3: vec4<f32> = fColor;
return FragmentOutput(e3);
}