Harbor

branch main
showing the latest snapshot on main
workflow_branch_output.luma 201 B · Plain text
shader/tests/shaders/workflow_branch_output.luma 0644 Raw
-- Workflow output definite assignment test.

fragment shade
	in uv: vec2
	out color: vec4
do
	if uv.x > 0.5 then
		color = vec4(1.0, uv.y, 0.0, 1.0)
	else
		color = vec4(0.0, uv.y, 1.0, 1.0)
	end
end