This commit is contained in:
profan 2026-06-05 00:16:20 +01:00
parent afb608ef7a
commit 838887f06c
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ void Main()
void main() void main()
{ {
float v = texture(texture0, fragTexCoord).r < 0 ? 1.0 : 0.0; float v = texture(texture0, fragTexCoord).r< 0 ? 1.0 : 0.0;
outputColor = vec4(v, v, v, 1.0f) * fragColor; outputColor = vec4(v, v, v, 1.0f) * fragColor;
} }
"""; """;