OpenGL 程序无法与 X 转发配合使用

OpenGL 程序无法与 X 转发配合使用

我在 Linux 服务器中有一个 OpenGL 程序。我想使用 X 转发远程运行该程序,但失败了,而 xclock 和 xeyes 等程序却运行正常。(我确认该程序在本地桌面环境中可以运行。)以下是附加信息。

测试代码:

#include <GL/glut.h>

#define WIDTH 300
#define HEIGHT 300

void display()
{
    glClear(GL_COLOR_BUFFER_BIT);
    glColor3d(1, 0, 0);
    glBegin(GL_POLYGON);
        glVertex2i(10, 10);
        glVertex2i(WIDTH / 2, HEIGHT - 10);
        glVertex2i(WIDTH - 10, 10);
    glEnd();
    glFlush();
}

int main(int argc, char **argv)
{
    glutInit(&argc, argv);
    glutInitWindowPosition(0, 0);
    glutInitWindowSize(WIDTH, HEIGHT);
    glutInitDisplayMode(GLUT_RGBA | GLUT_SINGLE);
    glutCreateWindow("Test");
    glMatrixMode(GL_PROJECTION);
    gluOrtho2D(0, WIDTH, 0, HEIGHT);
    glutDisplayFunc(display);
    glutMainLoop();
}

跑步:

$ gcc test.c -lGLU -lglut
$ ./a.out
Xlib:  extension "Generic Event Extension" missing on display "localhost:10.0".
freeglut (./a.out):  ERROR:  Internal error <Visual with necessary capabilities not found> in function fgOpenWindow
X Error of failed request:  BadWindow (invalid Window parameter)
  Major opcode of failed request:  4 (X_DestroyWindow)
  Resource id in failed request:  0x0
  Serial number of failed request:  17
  Current serial number in output stream:  20
$ glxgears
Xlib:  extension "Generic Event Extension" missing on display "localhost:10.0".
Error: couldn't get an RGB, Double-buffered visual
$

答案1

您需要设置远程渲染,或者使用支持获取预渲染窗口的 ssh 客户端。

$ export LIBGL_ALWAYS_INDIRECT=1   or use any nonzero value

在我的计算机上,Cygwin/X 允许我运行这两种模式,而 Xming 仅允许远程渲染(在客户端上)。我开发的应用程序也遇到了不允许使用 24 位模式的问题,但在未指定颜色深度时它可以工作。

相关内容