diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-05-19 22:25:31 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-05-19 22:25:31 +1000 |
commit | b6a4ac7b2d9d94a25ecdff007f87587512f5711d (patch) | |
tree | 588e2eb439be506415f1f807583687d94a27f911 /assets/shaders/cube.frag | |
parent | ebee348781e68e61f97c31411512dc0aabab7acb (diff) |
cube texture mapping working
Diffstat (limited to 'assets/shaders/cube.frag')
-rw-r--r-- | assets/shaders/cube.frag | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/shaders/cube.frag b/assets/shaders/cube.frag index e69de29..11f1efa 100644 --- a/assets/shaders/cube.frag +++ b/assets/shaders/cube.frag @@ -0,0 +1,12 @@ +#version 450 + +layout(location = 0) in vec3 fragColor; +layout(location = 1) in vec2 fragTexCoord; + +layout(binding = 1) uniform sampler2D texSampler; + +layout(location = 0) out vec4 outColor; + +void main() { + outColor = texture(texSampler, fragTexCoord); // vec4(fragTexCoord, 0.0); +} |