54b63a85a6
Adjust ShaderManager to load the 1.40 versions when GLSL 1.40 is supported.
13 lines
210 B
GLSL
13 lines
210 B
GLSL
#version 140
|
|
|
|
uniform mat4 projection;
|
|
|
|
// offset of the window/texture to be rendered
|
|
uniform vec2 offset;
|
|
|
|
in vec4 vertex;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = projection * vec4(vertex.xy + offset, vertex.zw);
|
|
}
|