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

Added alpha drawing and x mirroring

parent 9123414f
No related branches found
No related tags found
No related merge requests found
......@@ -23,10 +23,16 @@ uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
uniform float opacity;
uniform bool mirror;
out vec4 frag_color;
void main(){
gl_Position = projection*view*model*vec4(pos[0], pos[1], z_offset, 1.);
if(mirror){
gl_Position = projection*view*model*vec4(-pos[0], pos[1], z_offset, 1.);
}
frag_color = color_normal;
if(drawing_mode == 1){
......@@ -84,4 +90,8 @@ void main(){
if(selected_index == ind && drawing_mode != 1){
frag_color = color_selected;
}
if(drawing_mode != 1 && (drawing_mode != 7 || opacity < 0.1f)){
frag_color.a = opacity;
}
}
\ 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