7 lines
92 B
Plaintext
7 lines
92 B
Plaintext
|
|
||
|
out vec4 sk_FragColor;
|
||
|
in uint a;
|
||
|
void main() {
|
||
|
sk_FragColor.x = uintBitsToFloat(a);
|
||
|
}
|