Files
UnrealEngine/Engine/Shaders/StandaloneRenderer/OpenGL/SplashVertexShader.glsl
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

12 lines
236 B
GLSL

attribute vec2 InPosition;
varying vec2 textureCoordinate;
void main()
{
// We do not need texture coordinates. We calculate using position.
textureCoordinate = InPosition * 0.5 + 0.5;
gl_Position = vec4(InPosition, 0.0, 1.0);
}