
OpenTK antialiasing
Posted Sunday, 8 August, 2010 - 15:53 by cantrem| Project: | The Open Toolkit library |
| Version: | 1.0.0-rc1 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | cantrem |
| Status: | closed |
Jump to:
Description
From what i understand, enabling antialiasing in opentk is done by simply passing an int to the GameWindow constructor, specifying the number of samples needed. I made a new GameWindow using
public Game() : base(800, 600, new GraphicsMode(32,24,0,8), "otk bubu")
but unfortunatly i don't get any antialiasing in that form. Am I missing something?
My card is an Radeon HD 5740.


Comments
#1
Which driver version are you using? I presume you are using windows, correct?
#2
@the Fiddler: problem solved, my bad. I used a 8x multisampling after trying what i thought it was a 4x multisampling. the thing is that the hardware only supports 2x or 4x multisampling. i retried with a 4x and now it works so my guess is that on my first try i typed a wrong number for the antialiasing.
#3