9 lines
125 B
Plaintext
9 lines
125 B
Plaintext
varying vec2 uv;
|
|
|
|
void main() {
|
|
float radius = length(uv);
|
|
if(radius > 1.0)
|
|
discard;
|
|
gl_FragColor = gl_Color;
|
|
}
|