]> git.tdb.fi Git - libs/gl.git/blobdiff - source/shadowmap.cpp
Drop Id tags and copyright notices from files
[libs/gl.git] / source / shadowmap.cpp
index dbc4bd56524688170770d0e5d9fabe68ea3eac3c..42e636a3456865493218aeffbf673f26ba956452 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2009  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #include <cmath>
 #include <cstdlib>
 #include "light.h"
@@ -31,7 +24,6 @@ ShadowMap::ShadowMap(unsigned s, const Scene &c, const Light &l):
        depth_buf.set_compare_func(LEQUAL);
        depth_buf.set_wrap(CLAMP_TO_EDGE);
        depth_buf.storage(DEPTH_COMPONENT, size, size);
-       depth_buf.image(0, DEPTH_COMPONENT, UNSIGNED_BYTE, 0);
        fbo.attach(DEPTH_ATTACHMENT, depth_buf, 0);
 }