mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-10 07:12:07 +00:00
26 lines
564 B
GLSL
26 lines
564 B
GLSL
#version 450
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
layout(location = 0) in vec3 inVertex;
|
|
layout(location = 1) in vec2 inTexCoord;
|
|
|
|
layout(push_constant) uniform PushConstant
|
|
{
|
|
mat4 mvpMatrix;
|
|
float alpha;
|
|
} pc;
|
|
|
|
layout(location = 0) out vec2 texCoord;
|
|
layout(location = 1) out vec4 color;
|
|
layout(location = 2) out float aTreshold;
|
|
|
|
out gl_PerVertex {
|
|
vec4 gl_Position;
|
|
};
|
|
|
|
void main() {
|
|
gl_Position = pc.mvpMatrix * vec4(inVertex, 1.0);
|
|
texCoord = inTexCoord;
|
|
color = vec4(1.0, 1.0, 1.0, pc.alpha);
|
|
aTreshold = 0.0666;
|
|
}
|