From 60b245bf4ff80dda8fbdb11e91f223b2f2237eda Mon Sep 17 00:00:00 2001 From: cutealien Date: Wed, 13 Oct 2021 10:12:04 +0000 Subject: [PATCH] de-deprecate clearZBuffer Lets just keep this one around. Easy to use, downward compatible and generally works as expected. git-svn-id: svn://svn.code.sf.net/p/irrlicht/code/trunk@6259 dfc29bdd-3216-0410-991c-e03cc46cb475 --- include/IVideoDriver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/IVideoDriver.h b/include/IVideoDriver.h index f490dfe8..aef4820c 100644 --- a/include/IVideoDriver.h +++ b/include/IVideoDriver.h @@ -1423,7 +1423,7 @@ namespace video you have to render some special things, you can clear the zbuffer during the rendering process with this method any time. */ - IRR_DEPRECATED void clearZBuffer() + void clearZBuffer() { clearBuffers(ECBF_DEPTH, SColor(255,0,0,0), 1.f, 0); }