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
320 B
GLSL
16 lines
320 B
GLSL
#version 450
|
|
|
|
layout(set = 0, binding = 0) uniform Uniforms {
|
|
mat4 mvp_mat;
|
|
} uniforms;
|
|
|
|
layout(location = 0) in vec3 pos;
|
|
layout(location = 2) in vec2 tex_coords;
|
|
|
|
layout(location = 0) out vec2 frag_tex_coords;
|
|
|
|
void main() {
|
|
gl_Position = uniforms.mvp_mat * vec4(pos, 1.0);
|
|
frag_tex_coords = tex_coords;
|
|
}
|