Eu tenho um programa OpenGL em um servidor Linux. Quero executar o programa remotamente com encaminhamento X, mas ele falha, enquanto programas como xclock e xeyes funcionam bem. (Confirmei que o programa funciona no ambiente de área de trabalho local.) Abaixo estão informações adicionais.
Código de teste:
#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();
}
Correndo:
$ 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
$
Responder1
Você precisa configurar a renderização remota ou usar um cliente ssh que suporte a obtenção de janelas pré-renderizadas.
$ export LIBGL_ALWAYS_INDIRECT=1 or use any nonzero value
Na minha máquina, o Cygwin/X me permite executar os dois modos, enquanto o Xming permite apenas a renderização remota (no cliente). O aplicativo que desenvolvi também teve problemas por não poder usar o modo de 24 bits, mas funcionou quando a profundidade de cor não foi especificada.