1uniform half4 color; 2 3half4 flip(half4 c) { 4 return c.abgr; 5} 6 7half4 main() { 8 return flip(color); 9} 10