]> git.tdb.fi Git - libs/gl.git/blobdiff - source/bloom.cpp
Add a Pipeline framework for constructing complex rendering sequences
[libs/gl.git] / source / bloom.cpp
index 8a3bf3b295923f425c2d0fec68d5ffad90a55e15..b9e626989e1e585def0f45395cf6e5ff7ac1f016 100644 (file)
@@ -51,7 +51,7 @@ static const char combine_fs[]=
        "varying vec2 texcoord;\n"
        "void main()\n"
        "{\n"
-       "       gl_FragColor=mix(texture2D(source, texcoord), texture2D(blurred, texcoord), strength);"
+       "       gl_FragColor=mix(texture2D(source, texcoord), texture2D(blurred, texcoord), strength);\n"
        "}";
 
 }