From 96aa075d8950c3daf18af5c3594ec7f7542e59c3 Mon Sep 17 00:00:00 2001 From: Patrick Walton Date: Wed, 2 Dec 2015 19:17:40 -0800 Subject: [PATCH] Upgrade the GLSL version from 130 to 150. Intel Iris drivers on my MacBook Pro refuse to load the shaders otherwise. --- res/gl3_common.fs.glsl | 2 +- res/gl3_common.vs.glsl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/res/gl3_common.fs.glsl b/res/gl3_common.fs.glsl index 84bed1dc86..992583152a 100644 --- a/res/gl3_common.fs.glsl +++ b/res/gl3_common.fs.glsl @@ -1,4 +1,4 @@ -#version 130 +#version 150 #define SERVO_GL3 diff --git a/res/gl3_common.vs.glsl b/res/gl3_common.vs.glsl index 3ac8ea4b37..69e7d8c352 100644 --- a/res/gl3_common.vs.glsl +++ b/res/gl3_common.vs.glsl @@ -1,4 +1,4 @@ -#version 130 +#version 150 #define SERVO_GL3