another texCoord fix

This commit is contained in:
hunterk 2017-06-12 20:58:52 -05:00
parent 9ecae146c5
commit c8b177a9da

View file

@ -41,7 +41,7 @@ layout(location = 0) out vec2 vTexCoord;
void main() void main()
{ {
gl_Position = global.MVP * Position; gl_Position = global.MVP * Position;
vTexCoord = TexCoord; vTexCoord = TexCoord * 1.001;
} }
#pragma stage fragment #pragma stage fragment
@ -171,4 +171,4 @@ void main()
FragColor = vec4(color, 0.); FragColor = vec4(color, 0.);
} }
#endif #endif
} }