7 lines
90 B
Plaintext
7 lines
90 B
Plaintext
|
|
||
|
out vec4 sk_FragColor;
|
||
|
in int a;
|
||
|
void main() {
|
||
|
sk_FragColor.x = intBitsToFloat(a);
|
||
|
}
|