mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 07:18:29 +08:00

- The renderer now uses buffer memory mapping instead of the deprecated setSubData - It can now render models without texture - It can now use S3TC textures
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);
|
|
}
|