We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8fa07f commit d60a630Copy full SHA for d60a630
1 file changed
core/src/processing/opengl/PGraphicsOpenGL.java
@@ -6885,7 +6885,8 @@ protected void getGLParameters() {
6885
6886
// overwrite the default shaders with vendor specific versions
6887
// if needed
6888
- if (OPENGL_RENDERER.equals("VideoCore IV HW")) { // Mesa driver for same hardware
+ if (OPENGL_RENDERER.equals("VideoCore IV HW") || // Broadcom's binary driver for Raspberry Pi
6889
+ OPENGL_RENDERER.equals("Gallium 0.4 on VC4")) { // Mesa driver for same hardware
6890
defLightShaderVertURL =
6891
PGraphicsOpenGL.class.getResource("/processing/opengl/shaders/LightVert-vc4.glsl");
6892
defTexlightShaderVertURL =
0 commit comments