Search found 1 match

by PietroDVB
Wed Oct 18, 2006 9:04 pm
Forum: Irrlicht.NET
Topic: createRenderTargetTexture wrapper missing
Replies: 0
Views: 1390

createRenderTargetTexture wrapper missing

I didn't find createRenderTargetTexture in .NET wrapper, so I wrote it by myself into IVideoDriver.cpp: ITexture* IVideoDriver::CreateRenderTargetTexture(Core::Dimension2D size) { irr::video::ITexture *tex=Driver->createRenderTargetTexture(irr::core::dimension2d<irr::s32>(size.Width, size.Height)); ...