ugui.c3l/text_rendering/font_vertshader.glsl

24 lines
580 B
Plaintext
Raw Normal View History

2023-02-21 22:05:28 +01:00
#version 330 core
// viewsize.x = viewport width in pixels; viewsize.y = viewport height in pixels
2023-02-22 21:39:29 +01:00
uniform ivec2 viewsize;
uniform ivec2 texturesize;
2023-02-21 22:05:28 +01:00
2023-02-22 21:39:29 +01:00
// both position and and uv are in pixels, they where converted to floats when
// passed to the shader
2023-02-21 22:05:28 +01:00
layout(location = 0) in vec2 position;
2023-02-22 21:39:29 +01:00
layout(location = 1) in vec2 txcoord;
2023-02-21 22:05:28 +01:00
2023-02-22 21:39:29 +01:00
out vec2 uv;
2023-02-21 22:05:28 +01:00
void main()
{
vec4 pos = vec4(position.x, position.y, 0.0f, 1.0f);
2023-02-22 21:39:29 +01:00
vec2 hsize = vec2(float(viewsize.x)/2.0f, float(viewsize.y)/2.0f);
pos.xy = (pos.xy - hsize) / hsize;
2023-02-21 22:05:28 +01:00
gl_Position = pos;
2023-02-22 21:39:29 +01:00
uv = txcoord / float(texturesize);
2023-02-21 22:05:28 +01:00
}