Hi All-
I am trying to get Multi-Sample Anti-Aliasing switched on in both a MonoTouch and a MonoDroid app using OpenTK-1.0. OpenTK.Platform.iPhoneOS and OpenTK.Platform.Android both show GraphicsMode classes, but I can't seem to switch on MSAA. For example, on Android, I've tried:
GraphicsMode = new AndroidGraphicsMode (16, 16, 0, 4, 2, false);
To no avail. It always switches back to "low mode" or a default setting.
Does anyone have examples of how to switch on MSAA with OpenTK-1.0 using ES 2.0? I'd rather not manually create the MSAA buffers myself as OpenTK should handle this.
Thanks in advance.