From f6a0e340bc82cb5fb96f836686bd59aaffd5db97 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 23 Sep 2019 22:14:13 -0400 Subject: Fixed text rendering --- Shaders/ui.vert | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Shaders/ui.vert') diff --git a/Shaders/ui.vert b/Shaders/ui.vert index ee4f92c..d2e3902 100644 --- a/Shaders/ui.vert +++ b/Shaders/ui.vert @@ -12,8 +12,8 @@ out vec4 color; void main(){ texCoord = tex_coord; - color = vec4(1.0, 1.0, 1.0, 1.0); + color = vec4(0.0f, 0.0f, 0.0f, 1.0f); //color = tex_color; - //gl_Position = ortho * vec4(coord2d.xyz, 1.0); - gl_Position = projection * view * model * vec4(coord2d, 1.0f); + //gl_Position = ortho * vec4(coord2d.xyz, 1.0f); + gl_Position = projection * view * model * vec4(coord2d.xyz, 1.0f); } -- cgit v1.2.3