diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-23 07:37:45 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-23 07:37:45 -0400 |
commit | eff05df9465fbe052d028284143a6d3f69876476 (patch) | |
tree | b8efe9fa71285661e7d94ff6d105805781a7736e /shaders | |
parent | 85f67fa4b91d05c0e02997a616caf743a4bd714e (diff) |
Fixing layer bugs
Diffstat (limited to 'shaders')
-rw-r--r-- | shaders/world.frag | 26 |
1 files changed, 20 insertions, 6 deletions
diff --git a/shaders/world.frag b/shaders/world.frag index c103433..d50e01d 100644 --- a/shaders/world.frag +++ b/shaders/world.frag @@ -1,11 +1,25 @@ -uniform sampler2D sampler; +uniform sampler2D texture; +uniform sampler2D normalTex; varying vec2 texCoord; varying vec4 color; -void main(){ - vec4 pixTex = texture2D(sampler, vec2(texCoord.x, 1-texCoord.y)); - if(pixTex.a == 0.0) - discard; - gl_FragColor = pixTex * color; +uniform vec4 ambientLight; +uniform vec4 light[128]; +uniform vec4 lightColor[128]; +uniform float lightImpact; +uniform int lightSize; + +void main() +{ + + vec4 pixTex = texture2D(texture, vec2(texCoord.x, 1-texCoord.y)); + if (pixTex.a < 0.1) + discard; + + if (lightSize > 0) { + + } + + gl_FragColor = pixTex * color * pixTex.a; } |