Skip to content

Commit f83c5cb

Browse files
authored
Merge pull request #5138 from maiconpintoabreu/fix-glsl100
[examples][shaders] set glsl100 back to 100
2 parents 9cc9f3b + 6902193 commit f83c5cb

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

examples/shaders/resources/shaders/glsl100/julia_set.fs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#version 120
1+
#version 100
2+
3+
precision mediump float;
24

35
// Input vertex attributes (from vertex shader)
46
varying vec2 fragTexCoord;

examples/shaders/resources/shaders/glsl100/mask.fs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
#version 120
1+
#version 100
2+
3+
precision mediump float;
24

35
// Input vertex attributes (from vertex shader)
46
varying vec2 fragTexCoord;

examples/shaders/resources/shaders/glsl120/write_depth.fs

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

33
#extension GL_EXT_frag_depth : enable
44

0 commit comments

Comments
 (0)