1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00
Files
OpenRCT2/data/shaders/copyframebuffer.frag
2016-06-15 17:53:26 +01:00

14 lines
179 B
GLSL

#version 150
uniform sampler2D uTexture;
in vec2 fPosition;
in vec2 fTextureCoordinate;
out vec4 oColour;
void main()
{
oColour = texture(uTexture, fTextureCoordinate);
}