Skip to content

Commit 0275645

Browse files
Exotic0015craftablescience
authored andcommitted
fix(gui): explicitly set GLSL profile in shaders
1 parent 2625285 commit 0275645

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/gui/res/shaders/mdl.vert

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#version 150
1+
#version 150 core
22

33
attribute vec3 vPos;
44
attribute vec3 vNormal;

src/gui/res/shaders/mdl_shaded_textured.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#version 150
1+
#version 150 core
22

33
uniform sampler2D uMeshTexture;
44
uniform sampler2D uMatCapTexture;

src/gui/res/shaders/mdl_shaded_untextured.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#version 150
1+
#version 150 core
22

33
uniform sampler2D uMeshTexture;
44
uniform sampler2D uMatCapTexture;

src/gui/res/shaders/mdl_unshaded_textured.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#version 150
1+
#version 150 core
22

33
uniform sampler2D uMeshTexture;
44
uniform sampler2D uMatCapTexture;

src/gui/res/shaders/mdl_wireframe.frag

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#version 150
1+
#version 150 core
22

33
uniform sampler2D uMeshTexture;
44
uniform sampler2D uMatCapTexture;

0 commit comments

Comments
 (0)