Closed DaAwesomeP closed 2 years ago
Probably the intel shader compiler is more picky than the nvidia one. You should modify your shaders to respect this. The error message is not connected to Cinder.
Something like this maybe?
// vertex shader
smooth out vec4 vColor;
// fragment shader
smooth in vec4 vColor;
Ah, there was a mismatch between two files. Sorry about that and thank you for your help!
Hello,
I am using the latest Cinder (bfd055817bc6f04b4ff6a410932618c7eef0d78c) on Debian 11 compiled with CMake. This machine has an Intel integrated GPU. The app runs fine on another Debian 11 machine with a Nvidia GPU, but when I run it on this machine:
Output of
glxinfo | grep OpenGL
:Does Cinder simply require a Nvidia GPU with the official Nvidia driver on Linux?