Push vulkan shaders
This commit is contained in:
3
examples/bin/resources/shaders/spirv-triangle.bat
Normal file
3
examples/bin/resources/shaders/spirv-triangle.bat
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
glslangvalidator -V triangle.vert -o triangle.vert.spv
|
||||||
|
glslangvalidator -V triangle.frag -o triangle.frag.spv
|
||||||
|
|
||||||
13
examples/bin/resources/shaders/triangle.frag
Normal file
13
examples/bin/resources/shaders/triangle.frag
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
#version 450
|
||||||
|
|
||||||
|
#extension GL_ARB_separate_shader_objects : enable
|
||||||
|
#extension GL_ARB_shading_language_420pack : enable
|
||||||
|
|
||||||
|
layout (location = 0) in vec3 inColor;
|
||||||
|
|
||||||
|
layout (location = 0) out vec4 outFragColor;
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
outFragColor = vec4(inColor, 1.0);
|
||||||
|
}
|
||||||
BIN
examples/bin/resources/shaders/triangle.frag.spv
Normal file
BIN
examples/bin/resources/shaders/triangle.frag.spv
Normal file
Binary file not shown.
28
examples/bin/resources/shaders/triangle.vert
Normal file
28
examples/bin/resources/shaders/triangle.vert
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
#version 450
|
||||||
|
|
||||||
|
#extension GL_ARB_separate_shader_objects : enable
|
||||||
|
#extension GL_ARB_shading_language_420pack : enable
|
||||||
|
|
||||||
|
layout (location = 0) in vec4 inPos;
|
||||||
|
layout (location = 1) in vec3 inColor;
|
||||||
|
|
||||||
|
layout (binding = 0) uniform UBO
|
||||||
|
{
|
||||||
|
mat4 projectionMatrix;
|
||||||
|
mat4 modelMatrix;
|
||||||
|
mat4 viewMatrix;
|
||||||
|
} ubo;
|
||||||
|
|
||||||
|
layout (location = 0) out vec3 outColor;
|
||||||
|
|
||||||
|
out gl_PerVertex
|
||||||
|
{
|
||||||
|
vec4 gl_Position;
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
void main()
|
||||||
|
{
|
||||||
|
outColor = inColor;
|
||||||
|
gl_Position = ubo.projectionMatrix * ubo.viewMatrix * ubo.modelMatrix * vec4(inPos.xyz, 1.0);
|
||||||
|
}
|
||||||
BIN
examples/bin/resources/shaders/triangle.vert.spv
Normal file
BIN
examples/bin/resources/shaders/triangle.vert.spv
Normal file
Binary file not shown.
Reference in New Issue
Block a user