SPIRV-Cross/reference/shaders/desktop-only/vert/shader-draw-parameters-450.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

9 lines
184 B
GLSL

#version 450
#extension GL_ARB_shader_draw_parameters : require
void main()
{
gl_Position = vec4(float(gl_BaseVertexARB), float(gl_BaseInstanceARB), float(gl_DrawIDARB), 1.0);
}