Skip to content

Commit cc8d911

Browse files
committed
Removed unused line in shader
1 parent f754c6f commit cc8d911

File tree

3 files changed

+0
-6
lines changed

3 files changed

+0
-6
lines changed

08_Graphics/Media/Shaders/Brightness.frag

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ uniform sampler2D source;
33
const float Threshold = 0.7;
44
const float Factor = 4.0;
55

6-
#define saturate(x) clamp(x, 0.0, 1.0)
7-
86
void main()
97
{
108
vec4 sourceFragment = texture2D(source, gl_TexCoord[0].xy);

09_Audio/Media/Shaders/Brightness.frag

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ uniform sampler2D source;
33
const float Threshold = 0.7;
44
const float Factor = 4.0;
55

6-
#define saturate(x) clamp(x, 0.0, 1.0)
7-
86
void main()
97
{
108
vec4 sourceFragment = texture2D(source, gl_TexCoord[0].xy);

10_Network/Media/Shaders/Brightness.frag

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ uniform sampler2D source;
33
const float Threshold = 0.7;
44
const float Factor = 4.0;
55

6-
#define saturate(x) clamp(x, 0.0, 1.0)
7-
86
void main()
97
{
108
vec4 sourceFragment = texture2D(source, gl_TexCoord[0].xy);

0 commit comments

Comments
 (0)