BlosSOM
Interactive dimensionality reduction on large datasets (EmbedSOM and FLOWER combined)
shaders.h
Go to the documentation of this file.
1/* This file is part of BlosSOM.
2 *
3 * Copyright (C) 2021 Sona Molnarova
4 *
5 * BlosSOM is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free
7 * Software Foundation, either version 3 of the License, or (at your option)
8 * any later version.
9 *
10 * BlosSOM is distributed in the hope that it will be useful, but WITHOUT ANY
11 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
13 * details.
14 *
15 * You should have received a copy of the GNU General Public License along with
16 * BlosSOM. If not, see <https://www.gnu.org/licenses/>.
17 */
18
19#ifndef SHADERS_H
20#define SHADERS_H
21
22#include <string>
23
24const std::string tex_vs = "#version 400 core\n"
25 "layout (location = 0) in vec2 aPos;\n"
26 "out vec2 UV;\n"
27 "void main()\n"
28 "{\n"
29 " gl_Position = vec4(aPos, 0.0, 1.0);\n"
30 " UV = (gl_Position.xy+vec2(1,1))/2.0;\n"
31 "}\0";
32const std::string tex_fs =
33 "#version 400 core\n"
34 "in vec2 UV;\n"
35 "out vec4 FragColor;\n"
36 "uniform sampler2D renderedTexture;\n"
37 "void main()\n"
38 "{\n"
39 " vec4 texColor = texture( renderedTexture, UV) ;\n"
40 " if(texColor.a == 0.0)\n"
41 " discard;\n"
42 " FragColor = texColor;\n"
43 "}\0";
44
45const std::string scatter_vs =
46 "#version 400 core\n"
47 "layout (location = 0) in vec2 aPos;\n"
48 "layout (location = 1) in vec4 aCol;\n"
49 "uniform mat4 model;\n"
50 "uniform mat4 view;\n"
51 "uniform mat4 proj;\n"
52 "out vec4 outColor;\n"
53 "void main()\n"
54 "{\n"
55 " gl_Position = proj * view * model * vec4(aPos, 0.0, 1.0);\n"
56 " outColor = aCol;\n"
57 "}\0";
58
59const std::string scatter_fs = "#version 400 core\n"
60 "in vec4 outColor;\n"
61 "layout(location = 0) out vec4 color;"
62 "void main()\n"
63 "{\n"
64 " color = outColor;\n"
65 "}\0";
66
67const std::string graph_v_vs =
68 "#version 330 core\n"
69 "layout (location = 0) in vec2 aPos;\n"
70 "layout (location = 1) in vec3 aCol;\n"
71 "uniform mat4 model;\n"
72 "uniform mat4 view;\n"
73 "uniform mat4 proj;\n"
74 "out vec3 outColor;\n"
75 "void main()\n"
76 "{\n"
77 " gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
78 " outColor = aCol;\n"
79 "}\0";
80const std::string graph_v_fs = "#version 330 core\n"
81 "out vec4 FragColor;\n"
82 "in vec3 outColor;\n"
83 "void main()\n"
84 "{\n"
85 " FragColor = vec4(outColor, 0.6);\n"
86 "}\0";
87
88const std::string graph_v_outline_vs =
89 "#version 330 core\n"
90 "layout (location = 0) in vec2 aPos;\n"
91 "uniform mat4 model;\n"
92 "uniform mat4 view;\n"
93 "uniform mat4 proj;\n"
94 "void main()\n"
95 "{\n"
96 " gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
97 "}\0";
98const std::string graph_v_outline_fs =
99 "#version 330 core\n"
100 "out vec4 FragColor;\n"
101 "in vec4 outColor;\n"
102 "void main()\n"
103 "{\n"
104 " FragColor = vec4(0.2, 0.2, 0.2, 0.6);\n"
105 "}\0";
106
107const std::string graph_e_vs =
108 "#version 330 core\n"
109 "layout (location = 0) in vec2 aPos;\n"
110 "uniform mat4 model;\n"
111 "uniform mat4 view;\n"
112 "uniform mat4 proj;\n"
113 "void main()\n"
114 "{\n"
115 " gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
116 "}\0";
117const std::string graph_e_fs = "#version 330 core\n"
118 "out vec4 FragColor;\n"
119 "void main()\n"
120 "{\n"
121 " FragColor = vec4(1.0, 0.0, 0.0, 0.6);\n"
122 "}\0";
123
124const std::string ui_r_vs =
125 "#version 330 core\n"
126 "layout (location = 0) in vec2 aPos;\n"
127 "uniform mat4 model;\n"
128 "uniform mat4 view;\n"
129 "uniform mat4 proj;\n"
130 "void main()\n"
131 "{\n"
132 " gl_Position = proj * view * model * vec4(aPos, 0.2, 1.0);\n"
133 "}\0";
134const std::string ui_r_fs = "#version 330 core\n"
135 "out vec4 FragColor;\n"
136 "void main()\n"
137 "{\n"
138 " FragColor = vec4(0.0, 0.0, 0.0, 0.3);\n"
139 "}\0";
140
141const std::string ui_c_vs =
142 "#version 330 core\n"
143 "layout (location = 0) in vec2 aPos;\n"
144 "uniform mat4 model;\n"
145 "uniform mat4 view;\n"
146 "uniform mat4 proj;\n"
147 "void main()\n"
148 "{\n"
149 " gl_Position = proj * view * model * vec4(aPos, 0.1, 1.0);\n"
150 "}\0";
151const std::string ui_c_fs = "#version 330 core\n"
152 "out vec4 FragColor;\n"
153 "in vec4 outColor;\n"
154 "void main()\n"
155 "{\n"
156 " FragColor = vec4(0.2, 0.2, 0.2, 0.8);\n"
157 "}\0";
158
159#endif // SHADERS_H
const std::string ui_r_vs
Definition: shaders.h:124
const std::string scatter_fs
Definition: shaders.h:59
const std::string ui_r_fs
Definition: shaders.h:134
const std::string ui_c_fs
Definition: shaders.h:151
const std::string graph_v_outline_vs
Definition: shaders.h:88
const std::string tex_fs
Definition: shaders.h:32
const std::string graph_e_fs
Definition: shaders.h:117
const std::string graph_v_outline_fs
Definition: shaders.h:98
const std::string graph_v_fs
Definition: shaders.h:80
const std::string ui_c_vs
Definition: shaders.h:141
const std::string graph_v_vs
Definition: shaders.h:67
const std::string graph_e_vs
Definition: shaders.h:107
const std::string tex_vs
Definition: shaders.h:24
const std::string scatter_vs
Definition: shaders.h:45