DX11 is almost completely fixed the only thing remaining is the text scenenode is depth writing for no good reason.
But as i told befor the patch is already massive because the whole material system was poorly done and will probably only get worst when i fix the textscenenode
Irrlicht 2.0 - What's in store for the future!
Re: Irrlicht 2.0 - What's in store for the future!
In potential vulkan support and/or dx11 what about using a render target that uses per-pixel linked lists of fragments to provide order independent transparency by default. Any GPUs with over 100mb ram should handle it just fine.
Re: Irrlicht 2.0 - What's in store for the future!
Radeon R200 series, introduced in 2001, had 128mb VRAM cards.
Re: Irrlicht 2.0 - What's in store for the future!
Thats too high-level, I think its something the developer should decide or at least have very fine grained access toIn potential vulkan support and/or dx11 what about using a render target that uses per-pixel linked lists of fragments to provide order independent transparency by default. Any GPUs with over 100mb ram should handle it just fine.
Remember, memory is not primary concern, performance is.
Re: Irrlicht 2.0 - What's in store for the future!
what about replacing type enumerations with some sort of type registration? That way deriving new extensions from the defaults would not require modifications to the Irrlicht source and the engine could dynamically accept new types. The cost would be slight over head of storing the type along with an int identifier.
Code: Select all
RegisterableTypeEnum
{
string type;
int ID;
operator int*() {return ID;}
}
-
- Competition winner
- Posts: 189
- Joined: Tue Oct 16, 2007 3:53 am
- Location: Indonesia
- Contact:
Re: Irrlicht 2.0 - What's in store for the future!
how about scalable timer. lets say device->setGlobalAnimatorTimeScale(0.5); and all animation speed scaled down to half speed. device->setGlobalAnimatorTimeScale(0.0); and all animation paused, particle emiter stop emitting etc.
Re: Irrlicht 2.0 - What's in store for the future!
@kornwaretm: ITimer::setSpeed should do that.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
-
- Competition winner
- Posts: 189
- Joined: Tue Oct 16, 2007 3:53 am
- Location: Indonesia
- Contact:
Re: Irrlicht 2.0 - What's in store for the future!
ow it is already exist this whole time