35 lines
715 B
GLSL
35 lines
715 B
GLSL
#version 450
|
|
#pragma shader_stage(vertex)
|
|
|
|
layout (location = 0) out vec2 outUv;
|
|
layout (location = 1) out flat uint outPass;
|
|
|
|
layout( push_constant ) uniform PushBlock {
|
|
uint pass;
|
|
uint draw;
|
|
uint aux;
|
|
} PushConstant;
|
|
|
|
const vec2 positions[6] = vec2[](
|
|
vec2(-1.0, -1.0),
|
|
vec2( 1.0, -1.0),
|
|
vec2(-1.0, 1.0),
|
|
vec2(-1.0, 1.0),
|
|
vec2( 1.0, -1.0),
|
|
vec2( 1.0, 1.0)
|
|
);
|
|
|
|
const vec2 uvs[6] = vec2[](
|
|
vec2(0.0, 0.0),
|
|
vec2(1.0, 0.0),
|
|
vec2(0.0, 1.0),
|
|
vec2(0.0, 1.0),
|
|
vec2(1.0, 0.0),
|
|
vec2(1.0, 1.0)
|
|
);
|
|
|
|
void main() {
|
|
outUv = uvs[gl_VertexIndex];
|
|
outPass = PushConstant.pass;
|
|
gl_Position = vec4(positions[gl_VertexIndex], 0.0f, 1.0f);
|
|
} |