1 2 3 4 5 6 7 8 9 10
-- Workflow fragment builtin namespace test. fragment shade out color: vec4 do let coord = frag.coord.xy let facing = frag.front_facing let face = select(facing, 1.0, 0.25) color = vec4(coord.x * 0.0, coord.y * 0.0, face, 1.0) end