348aecc59f
vim doesn't display the newline terminating a file, because every file is supposed to have one. Travis does. That threw me off.
8 lines
124 B
GLSL
8 lines
124 B
GLSL
#version 460
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(float(gl_BaseVertex), float(gl_BaseInstance), float(gl_DrawID), 1.0);
|
|
}
|
|
|