Harbor

branch main
showing the latest snapshot on main
nested_return.luma 152 B · Plain text
shader/tests/diagnostics/nested_return.luma 0644 Raw
fragment shade
	in uv: vec2
	out color: vec4
do
	if uv.x > 0.5 then
		return vec4(1.0, 0.0, 0.0, 1.0)
	else
		color = vec4(0.0, 0.0, 1.0, 1.0)
	end
end