Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Generated with Shader Minifier 1.3.6 (https://github.com/laurentlb/Shader_Minifier/)
- #ifndef SHADERS_DEBUG_H_
- # define SHADERS_DEBUG_H_
- const char *testfrag_glsl =
- "#version 330 core\n"
- "layout(location=0) out vec4 color;"
- "void main()"
- "{"
- "color=vec4(1,0,1,1);"
- "}";
- const char *testvert_glsl =
- "#version 330 core\n"
- "layout(location=0) in vec4 position;"
- "void main()"
- "{"
- "gl_Position=position;"
- "}";
- #endif // SHADERS_DEBUG_H_
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement