mirror of
https://github.com/italicsjenga/slang-shaders.git
synced 2025-02-17 07:27:43 +11:00
texCoord fix for pal-r57shell
This commit is contained in:
parent
0822605b7e
commit
9ecae146c5
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ layout(location = 0) out vec2 vTexCoord;
|
||||||
void main()
|
void main()
|
||||||
{
|
{
|
||||||
gl_Position = global.MVP * Position;
|
gl_Position = global.MVP * Position;
|
||||||
vTexCoord = TexCoord * 1.0004;
|
vTexCoord = TexCoord * 1.00004;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pragma stage fragment
|
#pragma stage fragment
|
||||||
|
|
Loading…
Add table
Reference in a new issue