fix black screen

This commit is contained in:
jacekpoz 2024-08-08 15:19:43 +02:00
parent 0401884144
commit 6b89ff963a
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -5,8 +5,5 @@ layout(location = 0) in vec3 fragColor;
layout(location = 1) in vec2 position;
void main() {
if (length(position) > 0.5) {
discard;
}
outColor = vec4(fragColor, 1.0);
}