diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-05-19 23:26:32 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-05-19 23:26:32 +1000 |
commit | 63de5753d03dd7fe1f60b98e3825023d5b3392d6 (patch) | |
tree | c581897313db3db6d53d5adc8bbfc064c03d7042 /assets/shaders/cube.frag | |
parent | b6a4ac7b2d9d94a25ecdff007f87587512f5711d (diff) |
wip: depth
Diffstat (limited to 'assets/shaders/cube.frag')
-rw-r--r-- | assets/shaders/cube.frag | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/shaders/cube.frag b/assets/shaders/cube.frag index 11f1efa..292578f 100644 --- a/assets/shaders/cube.frag +++ b/assets/shaders/cube.frag @@ -8,5 +8,5 @@ layout(binding = 1) uniform sampler2D texSampler; layout(location = 0) out vec4 outColor; void main() { - outColor = texture(texSampler, fragTexCoord); // vec4(fragTexCoord, 0.0); + outColor = texture(texSampler, fragTexCoord); // vec4(fragTexCoord, 0.0); } |