每当我尝试在Processing 2.0.1中使用3D图形时,就像这样:
void setup() {
size(640, 360, P3D);
fill(204);
}
void draw() {
lights();
background(0);
camera(30.0, mouseY, 220.0,
0.0, 0.0, 0.0,
0.0, 1.0, 0.0);
noStroke();
box(90);
stroke(255);
line(-100, 0, 0, 100, 0, 0);
line(0, -100, 0, 0, 100, 0);
line(0, 0, -100, 0, 0, 100);
}
...我收到一个OpenGL错误。这是控制台输出(我使用的是Sublime Text 2而不是Processing IDE):
Listening for transport dt_socket at address: 8213
OpenGL error 1280 at bot beginDraw(): invalid enumerant
OpenGL error 1280 at bot endDraw(): invalid enumerant
OpenGL error 1282 at bot endDraw(): invalid operation
X11Util.Display: Shutdown (JVM shutdown: true, open (no close attempt): 1/1, reusable (open, marked uncloseable): 0, pending (open in creation order): 1)
X11Util: Open X11 Display Connections: 1
X11Util: Open[0]: NamedX11Display[:0, 0xae31248, refCount 1, unCloseable false]
Finished.
[Finished in 28.6s]
但是,我似乎确实有OpenGL(并且它必须正常工作,因为WebGL功能正常。):
laura@drukqs ~ $ lspci | grep VGA
00:01.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI Wrestler [Radeon HD 6290]
laura@drukqs ~ $ glxinfo | grep OpenGL
OpenGL vendor string: X.Org
OpenGL renderer string: Gallium 0.4 on AMD PALM
OpenGL version string: 3.0 Mesa 9.1.3
OpenGL shading language version string: 1.30
OpenGL extensions:
我在Acer Aspire One 722上使用Linux Mint 15,我怀疑我的图形驱动程序是那么棒,但这不是问题,可以吗?因为就像我说的那样,WebGL确实有用。
编辑:它也不适用于处理IDE或处理网站上的示例页面。
答案 0 :(得分:1)
Eclipse没有找到使用OpenGL所需的库(P3D使用)。您必须按照this post。
中的说明导入这些文件答案 1 :(得分:0)
好吧,看起来简单的解决方案就是使用专有的图形驱动程序...当然我的计算机还有P3D的其他问题,但那是另一天的帖子。