This is my first post in here.
I'm trying to develop a simple application in linux ubuntu using Irrlicht and OpenGL.
My video card is an ATI express 1250.
The major problem for now is a strange flickering/stuttering effect that appears more or less each second. I think that it could be a Vsync problem.
I've tried to activate the Vsync from the ATI catalyst control center (set to "quality", always on), but the bad effect seems to be even more evident.
In irrlicht I've also enabled param.Vsync = true; in createDeviceEx like 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 = 32;
param.Stencilbuffer = true;
param.Vsync = true;
device = createDeviceEx(param);
Is there a way to fix this issue?
I've also an antialiasing problem...as you can see I've enable it but I keep on seeing 3d cubes edges not smoothed as they must be.
Thank you in advance.
Gianluca