Hey everybody! So i just got hooked on Processing a little, had my ups and downs, but I encounterred one problem i couldn't solve. When i try to get anti aliasing working with OpenGL or P3D it simply does nothing. The following code below displays me a NOT anti aliased circle. The only way i can get antialiasing is if i activate the option in my NVIDIA X Server settings "Override applications settings" and set it to some value > 0. So it should basically work, just the option in processing seems to do nothing. And forcing it for all applications can't be the solution.
So I am on Linux, Kubuntu 11.10 32-bit kernel version 3.0.0-15-generic. Graphics card is NVIDIA 7600GT with driver version 280.13. Same for processing 1.5.1 and 2.0a4. If you need any further information, please tell me!
PS: really not that important, but... If somebody has encountered the following it would be nice: On windows if i activate any 3D it gets software rendered.
Thanks a lot in advance!
So I am on Linux, Kubuntu 11.10 32-bit kernel version 3.0.0-15-generic. Graphics card is NVIDIA 7600GT with driver version 280.13. Same for processing 1.5.1 and 2.0a4. If you need any further information, please tell me!
- import processing.opengl.*;
- void setup() {
- size(300, 300, OPENGL);
- hint(ENABLE_OPENGL_4X_SMOOTH);
- }
- void draw() {
- background(0);
- fill(255);
- ellipse(150, 150, 100, 100);
- }
PS: really not that important, but... If somebody has encountered the following it would be nice: On windows if i activate any 3D it gets software rendered.
Thanks a lot in advance!
1