unplugged-system/external/skia/resources/sksl/shared/DoubleNegation.sksl

6 lines
143 B
Plaintext
Raw Normal View History

uniform half4 colorGreen;
half4 main(float2 coords) {
return half4(half(-(-int(colorGreen.r))), -(-colorGreen.g), -(-(colorGreen.ba)));
}