X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;ds=sidebyside;f=source%2Fshadowmap.cpp;h=dbc4bd56524688170770d0e5d9fabe68ea3eac3c;hb=cd446554e998204eaba22504b7b28227feb8edbb;hp=c8730426e6a557b113440914bef162239bc02751;hpb=2f09d68a0844d2838d116d93d3ecc69723b52f16;p=libs%2Fgl.git diff --git a/source/shadowmap.cpp b/source/shadowmap.cpp index c8730426..dbc4bd56 100644 --- a/source/shadowmap.cpp +++ b/source/shadowmap.cpp @@ -30,7 +30,7 @@ ShadowMap::ShadowMap(unsigned s, const Scene &c, const Light &l): depth_buf.set_compare_enabled(true); depth_buf.set_compare_func(LEQUAL); depth_buf.set_wrap(CLAMP_TO_EDGE); - depth_buf.storage(DEPTH_COMPONENT, size, size, 0); + depth_buf.storage(DEPTH_COMPONENT, size, size); depth_buf.image(0, DEPTH_COMPONENT, UNSIGNED_BYTE, 0); fbo.attach(DEPTH_ATTACHMENT, depth_buf, 0); }