10 lines
188 B
Plaintext
10 lines
188 B
Plaintext
/*#pragma settings UsesPrecisionModifiers ForceHighPrecision*/
|
|
|
|
uniform float unknownInput;
|
|
|
|
void main() {
|
|
half x = half(unknownInput);
|
|
half4 y = half4(x);
|
|
sk_FragColor = y;
|
|
}
|