BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
Variables
shaders.h File Reference
#include <string>
Include dependency graph for shaders.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Variables

const std::string tex_vs
 
const std::string tex_fs
 
const std::string scatter_vs
 
const std::string scatter_fs
 
const std::string graph_v_vs
 
const std::string graph_v_fs
 
const std::string graph_v_outline_vs
 
const std::string graph_v_outline_fs
 
const std::string graph_e_vs
 
const std::string graph_e_fs
 
const std::string ui_r_vs
 
const std::string ui_r_fs
 
const std::string ui_c_vs
 
const std::string ui_c_fs
 

Variable Documentation

◆ graph_e_fs

const std::string graph_e_fs
Initial value:
= "#version 330 core\n"
"out vec4 FragColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(1.0, 0.0, 0.0, 0.6);\n"
"}\0"

Definition at line 117 of file shaders.h.

◆ graph_e_vs

const std::string graph_e_vs
Initial value:
=
"#version 330 core\n"
"layout (location = 0) in vec2 aPos;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
"}\0"

Definition at line 107 of file shaders.h.

◆ graph_v_fs

const std::string graph_v_fs
Initial value:
= "#version 330 core\n"
"out vec4 FragColor;\n"
"in vec3 outColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(outColor, 0.6);\n"
"}\0"

Definition at line 80 of file shaders.h.

◆ graph_v_outline_fs

const std::string graph_v_outline_fs
Initial value:
=
"#version 330 core\n"
"out vec4 FragColor;\n"
"in vec4 outColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(0.2, 0.2, 0.2, 0.6);\n"
"}\0"

Definition at line 98 of file shaders.h.

◆ graph_v_outline_vs

const std::string graph_v_outline_vs
Initial value:
=
"#version 330 core\n"
"layout (location = 0) in vec2 aPos;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
"}\0"

Definition at line 88 of file shaders.h.

◆ graph_v_vs

const std::string graph_v_vs
Initial value:
=
"#version 330 core\n"
"layout (location = 0) in vec2 aPos;\n"
"layout (location = 1) in vec3 aCol;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"out vec3 outColor;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
" outColor = aCol;\n"
"}\0"

Definition at line 67 of file shaders.h.

◆ scatter_fs

const std::string scatter_fs
Initial value:
= "#version 400 core\n"
"in vec4 outColor;\n"
"layout(location = 0) out vec4 color;"
"void main()\n"
"{\n"
" color = outColor;\n"
"}\0"

Definition at line 59 of file shaders.h.

◆ scatter_vs

const std::string scatter_vs
Initial value:
=
"#version 400 core\n"
"layout (location = 0) in vec2 aPos;\n"
"layout (location = 1) in vec4 aCol;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"out vec4 outColor;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.0, 1.0);\n"
" outColor = aCol;\n"
"}\0"

Definition at line 45 of file shaders.h.

◆ tex_fs

const std::string tex_fs
Initial value:
=
"#version 400 core\n"
"in vec2 UV;\n"
"out vec4 FragColor;\n"
"uniform sampler2D renderedTexture;\n"
"void main()\n"
"{\n"
" vec4 texColor = texture( renderedTexture, UV) ;\n"
" if(texColor.a == 0.0)\n"
" discard;\n"
" FragColor = texColor;\n"
"}\0"

Definition at line 32 of file shaders.h.

◆ tex_vs

const std::string tex_vs
Initial value:
= "#version 400 core\n"
"layout (location = 0) in vec2 aPos;\n"
"out vec2 UV;\n"
"void main()\n"
"{\n"
" gl_Position = vec4(aPos, 0.0, 1.0);\n"
" UV = (gl_Position.xy+vec2(1,1))/2.0;\n"
"}\0"

Definition at line 24 of file shaders.h.

◆ ui_c_fs

const std::string ui_c_fs
Initial value:
= "#version 330 core\n"
"out vec4 FragColor;\n"
"in vec4 outColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(0.2, 0.2, 0.2, 0.8);\n"
"}\0"

Definition at line 151 of file shaders.h.

◆ ui_c_vs

const std::string ui_c_vs
Initial value:
=
"#version 330 core\n"
"layout (location = 0) in vec2 aPos;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
"}\0"

Definition at line 141 of file shaders.h.

◆ ui_r_fs

const std::string ui_r_fs
Initial value:
= "#version 330 core\n"
"out vec4 FragColor;\n"
"void main()\n"
"{\n"
" FragColor = vec4(0.0, 0.0, 0.0, 0.3);\n"
"}\0"

Definition at line 134 of file shaders.h.

◆ ui_r_vs

const std::string ui_r_vs
Initial value:
=
"#version 330 core\n"
"layout (location = 0) in vec2 aPos;\n"
"uniform mat4 model;\n"
"uniform mat4 view;\n"
"uniform mat4 proj;\n"
"void main()\n"
"{\n"
" gl_Position = proj * view * model * vec4(aPos, 0.2, 1.0);\n"
"}\0"

Definition at line 124 of file shaders.h.