mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-06 03:29:44 -06:00
Remove unused textures
This commit is contained in:
@@ -31,8 +31,6 @@ uniform float opacity = 1.0;
|
||||
|
||||
uniform sampler2D colorTexture;
|
||||
uniform sampler2D depthTexture;
|
||||
uniform sampler2D positionTexture;
|
||||
uniform sampler2D normalTexture;
|
||||
|
||||
Fragment getFragment() {
|
||||
Fragment frag;
|
||||
@@ -46,8 +44,6 @@ Fragment getFragment() {
|
||||
frag.color.a = opacity * textureColor.a;
|
||||
|
||||
frag.depth = denormalizeFloat(texture(depthTexture, vs_st).x);
|
||||
frag.gPosition = texture(positionTexture, vs_st);
|
||||
frag.gNormal = vec4(texture(normalTexture, vs_st).rgb, 0.0);
|
||||
frag.disableLDR2HDR = true;
|
||||
|
||||
return frag;
|
||||
|
||||
Reference in New Issue
Block a user