Skip to content
Snippets Groups Projects
Commit d0d74033 authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added overlay shaders

parent 571dd826
No related branches found
No related tags found
No related merge requests found
#version 410 core
out vec4 FragColor;
in vec2 tex_coord;
uniform sampler2D imTexture;
void main(){
FragColor = texture(imTexture, tex_coord);
FragColor.a = 1.f;
}
\ No newline at end of file
#version 410 core
layout (location = 0) in vec2 pos;
layout (location = 1) in vec2 texuv;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
uniform float opacity;
uniform float radians;
uniform vec2 offset;
uniform float scale;
out vec2 tex_coord;
void main(){
vec2 pos_adjusted = scale * pos + offset;
gl_Position = projection*view*model*vec4(pos_adjusted[0], pos_adjusted[1], 0.f, 1.f);
tex_coord = texuv;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment