X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpostprocessor.cpp;h=f67bf4cf701407feb086ddb45669394d51c7ff4b;hb=df20a7e137542a4156cc5ffa8118d59de6b68547;hp=28ae71b0945b2ca28e04cf3de34d60e222a36646;hpb=fd18332856ddd03f79a54dd034d53cb0a384335d;p=libs%2Fgl.git diff --git a/source/postprocessor.cpp b/source/postprocessor.cpp index 28ae71b0..f67bf4cf 100644 --- a/source/postprocessor.cpp +++ b/source/postprocessor.cpp @@ -3,20 +3,6 @@ #include "postprocessor.h" #include "shader.h" -namespace { - -const char fullscreen_vs_source[] = - "attribute vec4 vertex;\n" - "varying vec2 texcoord;\n" - "void main()\n" - "{\n" - " gl_Position = vertex;\n" - " texcoord = vertex.xy*0.5+0.5;\n" - "}\n"; - -} - - namespace Msp { namespace GL { @@ -25,12 +11,6 @@ void PostProcessor::render(Renderer &, const Texture2D &color, const Texture2D & render(color, depth); } -Shader &PostProcessor::get_fullscreen_vertex_shader() -{ - static VertexShader shader(fullscreen_vs_source); - return shader; -} - const Mesh &PostProcessor::get_fullscreen_quad() { static const Mesh &mesh = create_fullscreen_quad();