SPIRV-Cross/reference/shaders/desktop-only/vert/shader-draw-parameters.desktop.vert
Chip Davis 348aecc59f Remove extra newline.
vim doesn't display the newline terminating a file, because every file
is supposed to have one. Travis does. That threw me off.
2018-08-29 14:04:20 -05:00

8 lines
124 B
GLSL

#version 460
void main()
{
gl_Position = vec4(float(gl_BaseVertex), float(gl_BaseInstance), float(gl_DrawID), 1.0);
}