I'm working on a little game that uses Irrlicht. I'm pretty new to Irrlicht and I was wondering how I could enable multisampling. The device driver is EDT_OPENGL initiated as such:
IrrlichtDevice *device = createDevice(video::EDT_OPENGL,
core::dimension2d<u32>(800, 700),
16,
NO);
How do I enable multisampling? Thanks in advance. :)