move shaders into separate files

This commit is contained in:
2019-09-08 23:47:07 -04:00
parent 76e022317f
commit 1026a2c791
6 changed files with 69 additions and 32 deletions

View File

@@ -8,3 +8,10 @@ target_link_libraries(${PROJECT_NAME}
target_include_directories(${PROJECT_NAME}
PRIVATE include)
add_custom_command(
TARGET cosets POST_BUILD
COMMAND ${CMAKE_COMMAND} -E copy_directory
${CMAKE_CURRENT_SOURCE_DIR}/src/shaders
${CMAKE_CURRENT_BINARY_DIR}/shaders
)

View File

@@ -17,38 +17,15 @@ class CosetsWindow : public Window {
public:
void init() override {
auto vs = build_shader(GL_VERTEX_SHADER, "vertex",
"#version 400\n"
""
"uniform mat4 proj;"
""
"in vec4 pos;"
"out vec4 v;"
""
"void main(){"
" v = pos;"
""
" /* stereographic projection */"
" vec4 vert = vec4(pos.xyz / (1 - pos.w), 1);"
" gl_Position = proj * vert;"
"}");
auto vs = build_shader_file(
GL_VERTEX_SHADER,
"vertex",
"shaders/main.vs.glsl");
auto fs = build_shader(GL_FRAGMENT_SHADER, "fragment",
"#version 400\n"
""
"in vec4 v;"
""
"vec3 hsv2rgb(vec3 c)\n"
"{\n"
" vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);\n"
" vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);\n"
" return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);\n"
"}"
""
"void main(){"
" gl_FragColor = vec4(hsv2rgb(vec3(v.w, 1, 1)), 0);"
"}"
);
auto fs = build_shader_file(
GL_FRAGMENT_SHADER,
"fragment",
"shaders/main.fs.glsl");
program = build_program("main", vs, fs);
@@ -123,4 +100,4 @@ int main(int argc, char *argv[]) {
glfwTerminate();
return EXIT_SUCCESS;
}
}

View File

@@ -0,0 +1,13 @@
#version 400
in vec4 v;
vec3 hsv2rgb(vec3 c) {
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
}
void main(){
gl_FragColor = vec4(hsv2rgb(vec3(v.w, 1, 1)), 0);
}

View File

@@ -0,0 +1,14 @@
#version 400
uniform mat4 proj;
in vec4 pos;
out vec4 v;
void main(){
v = pos;
/* stereographic projection */
vec4 vert = vec4(pos.xyz / (1 - pos.w), 1);
gl_Position = proj * vert;
}

19
cosets/src/util/files.hpp Normal file
View File

@@ -0,0 +1,19 @@
#pragma once
#include <fstream>
#include <string>
#include <streambuf>
std::string read_all_text(const std::string &file) {
std::ifstream f(file);
std::string text;
f.seekg(0, std::ios::end);
text.reserve(f.tellg());
f.seekg(0, std::ios::beg);
text.assign((std::istreambuf_iterator<char>(f)),
std::istreambuf_iterator<char>());
return text;
}

View File

@@ -5,6 +5,8 @@
#include <cstdio>
#include <cstdlib>
#include "files.hpp"
GLint build_shader(GLenum type, const std::string &name, const std::string &src) {
const char *c_str = src.c_str();
@@ -28,6 +30,11 @@ GLint build_shader(GLenum type, const std::string &name, const std::string &src)
return s;
}
GLint build_shader_file(GLenum type, const std::string &name, const std::string &file) {
std::string src = read_all_text(file);
return build_shader(type, name, src);
}
GLint build_program(const std::string &name, GLint vs, GLint fs) {
GLint p = glCreateProgram();
glAttachShader(p, vs);