summary refs log tree commit diff
path: root/misc/xbox/ps_coloured.ps.cg
blob: aec8b40260fe2c5d5e99c64efbe73d3e20f23426 (plain)
1
2
3
4
5
6
7
8
9
10
struct vOut {
	float4 color : COLOR;
};

float4 main(
		vOut input
	) : COLOR
{
	return input.color;
}