Added headless rendering example

Refs #331
This commit is contained in:
saschawillems 2017-09-16 14:19:02 +02:00
parent 6ea5c2031b
commit f3432cacf3
8 changed files with 1046 additions and 0 deletions

View file

@ -0,0 +1,10 @@
#version 450
layout (location = 0) in vec3 inColor;
layout (location = 0) out vec4 outFragColor;
void main()
{
outFragColor = vec4(inColor, 1.0);
}

Binary file not shown.

View file

@ -0,0 +1,20 @@
#version 450
layout (location = 0) in vec3 inPos;
layout (location = 1) in vec3 inColor;
layout (location = 0) out vec3 outColor;
out gl_PerVertex {
vec4 gl_Position;
};
layout(push_constant) uniform PushConsts {
mat4 mvp;
} pushConsts;
void main()
{
outColor = inColor;
gl_Position = pushConsts.mvp * vec4(inPos.xyz, 1.0);
}

Binary file not shown.