diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-09 07:42:18 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-09 07:42:18 -0400 |
commit | 50bfb70e9a1788e6f64800001919e3d8386eb81d (patch) | |
tree | 2c41ac01a6212a9cd3c6d304e161b9e6d073e815 /src/shader_utils.cpp | |
parent | bc92962aff14805d5920f5a82628648d1c1fe4fd (diff) |
world draw fixes
Diffstat (limited to 'src/shader_utils.cpp')
-rw-r--r-- | src/shader_utils.cpp | 23 |
1 files changed, 2 insertions, 21 deletions
diff --git a/src/shader_utils.cpp b/src/shader_utils.cpp index 13b2f74..bc9375c 100644 --- a/src/shader_utils.cpp +++ b/src/shader_utils.cpp @@ -1,9 +1,3 @@ -/** - * From the OpenGL Programming wikibook: http://en.wikibooks.org/wiki/OpenGL_Programming - * This file is in the public domain. - * Contributors: Sylvain Beucler, Guus Sliepen - */ - #include <iostream> #include <vector> using namespace std; @@ -76,21 +70,8 @@ GLuint create_shader(const char* filename, GLenum type) { return 0; } GLuint res = glCreateShader(type); - const GLchar* sources[] = { - // Define GLSL version - "#version 130\n" // OpenGL 2.0 - , - // Define default float precision for fragment shaders: - (type == GL_FRAGMENT_SHADER) ? - "#ifdef GL_FRAGMENT_PRECISION_HIGH\n" - "precision highp float; \n" - "#else \n" - "precision mediump float; \n" - "#endif \n" - : "" - , - source }; - glShaderSource(res, 3, sources, NULL); + const GLchar* sources[2] = { "#version 120\n", source }; + glShaderSource(res, 2, sources,NULL); delete[] source; glCompileShader(res); |