11 lines
125 B
GLSL
11 lines
125 B
GLSL
#version 310 es
|
|
precision highp float;
|
|
|
|
out vec4 outp;
|
|
void main()
|
|
{
|
|
if (gl_HelperInvocation)
|
|
++outp;
|
|
}
|
|
|