The only thing that is still not working is antialiasing...I still view "pixelization" effects on the edges...
I've tried this:
Code: Select all
irr::SIrrlichtCreationParameters param;
param.DriverType = video::EDT_OPENGL;
param.Fullscreen = true;
param.WindowSize = core::dimension2d<s32>(1024, 768);
param.EventReceiver = &receiver;
param.AntiAlias = true;
param.Bits = 16;
What's wrong with it?
I'm working under Linux Ubuntu with an ATI card and OPENGL...
Thank you for your help...