X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fshadowmap.cpp;h=96539f1d4d70c2241e0699e60dc5da757595a961;hb=5172d32d67595ea0b70184fadcfcb8e023cccbc8;hp=c8730426e6a557b113440914bef162239bc02751;hpb=955e7cada42e099016879332e71863e46075d72b;p=libs%2Fgl.git diff --git a/source/shadowmap.cpp b/source/shadowmap.cpp index c8730426..96539f1d 100644 --- a/source/shadowmap.cpp +++ b/source/shadowmap.cpp @@ -30,8 +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.image(0, DEPTH_COMPONENT, UNSIGNED_BYTE, 0); + depth_buf.storage(DEPTH_COMPONENT, size, size); fbo.attach(DEPTH_ATTACHMENT, depth_buf, 0); }