We closed this forum 18 June 2010. It has served us well since 2005 as the ALPHA forum did before it from 2002 to 2005. New discussions are ongoing at the new URL http://forum.processing.org. You'll need to sign up and get a new user account. We're sorry about that inconvenience, but we think it's better in the long run. The content on this forum will remain online.
IndexProgramming Questions & HelpOpenGL and 3D Libraries › Linux, OpenGL Anti-aliasing with hint() problems
Page Index Toggle Pages: 1
Linux, OpenGL Anti-aliasing with hint() problems (Read 529 times)
Linux, OpenGL Anti-aliasing with hint() problems
Jun 22nd, 2008, 5:27pm
 
Hello there

I'm running Xubuntu and everything is working fine, except if I try to use the hint(ENABLE_OPENGL_4X_SMOOTH). It also doesn't work with 2X. When I insert this line, the render window doesn't launch at all. Without it, everything works.

I first thought that my Intel GMA 950 was the problem. However, if I boot into Windows XP and launch the exact same code, everything works and AA is turned on. I simply have no idea why. If I use this code:

import processing.opengl.*;

void setup()
{
 size(800, 600, OPENGL);
 hint(ENABLE_OPENGL_4X_SMOOTH);
}

void draw()
{
}

it doesn't work. No render window is launched. However, if I comment out the hint-command it works. In Windows XP it works no matter what.

Anybody have an idea how to solve this? Smiley
Re: Linux, OpenGL Anti-aliasing with hint() proble
Reply #1 - Jul 1st, 2008, 10:07am
 
same here, kubuntu 8.04, processing 0135.
no error message, the sketch is not launching.
Page Index Toggle Pages: 1