diff options
| author | unknown <james.jenour@protonmail.com> | 2020-07-02 00:53:17 +1000 |
|---|---|---|
| committer | unknown <james.jenour@protonmail.com> | 2020-07-02 00:53:17 +1000 |
| commit | bd6f658c6c53d160c40bc3b5fdead7b7b3dd20c4 (patch) | |
| tree | 8cf4a287369c94e377604561d937b7096c0abf50 /src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh | |
| parent | fa7be3a200f26d53eabfc58e509fd9c6d0a2fd10 (diff) | |
| download | NotEnoughUpdates-BETA-1.8.tar.gz NotEnoughUpdates-BETA-1.8.tar.bz2 NotEnoughUpdates-BETA-1.8.zip | |
Diffstat (limited to 'src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh')
| -rw-r--r-- | src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh new file mode 100644 index 00000000..70875510 --- /dev/null +++ b/src/main/resources/assets/notenoughupdates/shaders/program/grayscale.fsh @@ -0,0 +1,15 @@ +#version 120 + +uniform sampler2D DiffuseSampler; + +varying vec2 texCoord; + +void main(){ + vec3 Gray = vec3(0.3, 0.59, 0.11); + vec4 diffuseColor = texture2D(DiffuseSampler, texCoord); + + float Luma = dot(diffuseColor.rgb, Gray); + diffuseColor.rgb = vec3(Luma, Luma, Luma); + + gl_FragColor = diffuseColor; +} |
