mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-07 05:21:12 +00:00
737bf15ad8
Compiles but only draws a black screen. Something must be missing but no idea yet what that might be.
10 lines
195 B
Text
10 lines
195 B
Text
|
|
layout(location = 0) in vec4 PositionInProjection;
|
|
layout(location = 1) in vec2 UV;
|
|
layout(location = 0) out vec2 TexCoord;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = PositionInProjection;
|
|
TexCoord = UV;
|
|
}
|