Antialias still not working...and I've RTFM... ;-)

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
mrAlmond
Posts: 15
Joined: Fri Nov 23, 2007 9:47 am

Antialias still not working...and I've RTFM... ;-)

Post by mrAlmond »

Ok...finally I'm seeing my own mesh on the irrlicht engine...I'm playing with reflections, textures etc etc...and it's all beautiful...
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;
...changing also 16 to 32 bits and playing with vsync and other parameters but nothing changes...

What's wrong with it?

I'm working under Linux Ubuntu with an ATI card and OPENGL...

Thank you for your help...
christianclavet
Posts: 1638
Joined: Mon Apr 30, 2007 3:24 am
Location: Montreal, CANADA
Contact:

Post by christianclavet »

Perhaps it's working, but you can't define the level of antialias.

On my computer here (Windows XP), the antialias, is going on 2x. So I still see some pixelization but less than without it.

One thing you could do to be sure, take a screenshot of your level with the antialias on and one without it. Compare the two.

One thing you use: irr::createDeviceEx ( const SIrrlichtCreationParameters & parameters ) for creating your display? (You didnt posted it, So i wasn't sure 100%)
Post Reply