1uniform half myHalf; 2uniform half4 myHalf4; 3 4half4 main(float2 coords) { 5 return myHalf4 * myHalf; 6} 7