bgfx/3rdparty/glslang/Test/spv.8bitstorage-ssbo.vert
Branimir Karadžić 5b704808d6 Updated glslang.
2018-10-26 18:44:52 -07:00

16 lines
255 B
GLSL

#version 450
#extension GL_EXT_shader_8bit_storage: require
layout(binding = 0) readonly buffer Vertices
{
uint8_t vertices[];
};
layout(location = 0) out vec4 color;
void main()
{
color = vec4(int(vertices[gl_VertexIndex]));
}