diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-17 19:36:30 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2021-01-17 22:16:48 +0000 |
commit | 0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c (patch) | |
tree | 68a80976a247836bbb1eecc835af437e3489fbb7 /res | |
parent | First cut modernizing and sanitizing (diff) | |
download | ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.bz2 ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.xz ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.zip |
Big reshuffle
Fixes code quality warnings now picked up.
Diffstat (limited to 'res')
-rw-r--r-- | res/basicShader.fs | 13 | ||||
-rw-r--r-- | res/basicShader.vs | 18 |
2 files changed, 0 insertions, 31 deletions
diff --git a/res/basicShader.fs b/res/basicShader.fs deleted file mode 100644 index 3aa974f..0000000 --- a/res/basicShader.fs +++ /dev/null @@ -1,13 +0,0 @@ -#version 120
-
-varying vec2 texCoord0;
-varying vec3 normal0;
-
-uniform sampler2D sampler;
-uniform vec3 lightDirection;
-
-void main()
-{
- gl_FragColor = texture2D(sampler, texCoord0) *
- clamp(dot(-lightDirection, normal0), 0.0, 1.0);
-}
diff --git a/res/basicShader.vs b/res/basicShader.vs deleted file mode 100644 index e673548..0000000 --- a/res/basicShader.vs +++ /dev/null @@ -1,18 +0,0 @@ -#version 120
-
-attribute vec3 position;
-attribute vec2 texCoord;
-attribute vec3 normal;
-
-varying vec2 texCoord0;
-varying vec3 normal0;
-
-uniform mat4 MVP;
-uniform mat4 Normal;
-
-void main()
-{
- gl_Position = MVP * vec4(position, 1.0);
- texCoord0 = texCoord;
- normal0 = (Normal * vec4(normal, 0.0)).xyz;
-}
|