Solved!
Although the default configure option "-opengl dynamic" is supposed to enable OpenGL over Remote Desktop and solve similar issues, the contrary is true for Coin.
We have recently started to programmatically force desktop OpenGL using
```
app = new QApplication();
app->setAttribute(Qt::AA_UseDesktopOpenGL); // Prevent problems
when run on low-end hardware or over Remote Desktop.
```
This solves crashing Coin on low-end hardware and also enables running Coin over Remote Desktop. I don't know why my previous attempts with the QT_OPENGL environment variable (which is supposed to do the same thing) were unsuccessful.
Bye,
Bastiaan.
--
You received this message because you are subscribed to the Google Groups "coin3d-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to coin3d-discus...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.