6 lines
73 B
GLSL
6 lines
73 B
GLSL
#version 130
|
|
|
|
void main(void) {
|
|
gl_FragColor.r = 1. / gl_FragCoord.w;
|
|
}
|