blob: 42f803da1561b2bd7500be4123993746fe8e9f41 [file] [log] [blame]
uniform half4 color;
half4 flip(half4 c) {
return c.abgr;
}
half4 main() {
return flip(color);
}