mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
16 lines
354 B
GLSL
16 lines
354 B
GLSL
![]() |
#version 450
|
||
|
|
||
|
precision mediump float;
|
||
|
precision mediump sampler;
|
||
|
|
||
|
layout(set = 0, binding = 1) uniform sampler tex_sampler;
|
||
|
layout(set = 0, binding = 2) uniform texture2D tex;
|
||
|
|
||
|
layout(location = 0) in vec2 frag_tex_coords;
|
||
|
|
||
|
layout(location = 0) out vec4 out_color;
|
||
|
|
||
|
void main() {
|
||
|
out_color = texture(sampler2D(tex, tex_sampler), frag_tex_coords);
|
||
|
}
|