mirror of
https://github.com/yquake2/ref_vk.git
synced 2024-11-10 06:41:45 +00:00
4b536019c3
This was first developed in a feature branch in the main yquake2 repo. It was merged into master in early 2021, but the experiences of the following month showed that it is not ready for prime time. There're glitches with 3rd party assets, restarts are still shaky, etc. Having the code in a separate repo allows us to: * Release Vulkan independent if YQ2. * Give commit access to contributors interested in Vulkan. This code is the same as in yquake/yquake2 ecdf912713eef55d6c5d5a772259b44e3fc232c4.
30 lines
607 B
GLSL
30 lines
607 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;
|
|
} pc;
|
|
|
|
layout(set = 1, binding = 0) uniform UniformBufferObject
|
|
{
|
|
vec4 color;
|
|
} ubo;
|
|
|
|
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 = ubo.color;
|
|
aTreshold = 0.0;
|
|
}
|