1
0
Fork 0
mirror of https://github.com/italicsjenga/slang-shaders.git synced 2025-02-23 18:17:44 +11:00

fix minor visual artifact in crt-consumer

closes 
This commit is contained in:
hizzlekizzle 2023-01-20 19:55:08 -06:00 committed by GitHub
parent fe11f79a06
commit 196b89c709
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,7 +89,7 @@ layout(location = 0) out vec2 vTexCoord;
void main()
{
gl_Position = global.MVP * Position;
vTexCoord = TexCoord * 1.001;
vTexCoord = TexCoord * 1.0001;
}
#pragma stage fragment