BLT-With-Graphics-Template/include/blt/gfx/renderer/shaders/postprocess.vert

32 lines
516 B
GLSL
Raw Normal View History

2024-05-03 22:14:48 -04:00
#ifdef __cplusplus
#include <string>
const std::string shader_postprocess_vert = R"("
#version 300 es
precision mediump float;
layout (location = 0) in vec3 vertex;
layout (location = 1) in vec2 uv_in;
out vec2 pos;
out vec2 uv;
layout (std140) uniform GlobalMatrices
{
mat4 projection;
mat4 ortho;
mat4 view;
mat4 pvm;
mat4 ovm;
};
uniform mat4 model;
uniform float z_index;
void main() {
gl_Position = vec4(vertex.xy, z_index, 1.0);
2024-05-03 22:14:48 -04:00
pos = vertex.xy;
uv = uv_in;
}
")";
#endif