mirror of
https://gitlab.winehq.org/wine/vkd3d.git
synced 2024-09-13 09:16:14 -07:00
4e5fcb5141
Requires VK_KHR_maintenance1.
14 lines
270 B
GLSL
14 lines
270 B
GLSL
#version 150
|
|
#extension GL_ARB_separate_shader_objects : enable
|
|
|
|
layout(location = 0) in vec4 position_in;
|
|
layout(location = 1) in vec4 colour_in;
|
|
|
|
layout(location = 0) out vec4 colour_out;
|
|
|
|
void main(void)
|
|
{
|
|
gl_Position = position_in;
|
|
colour_out = colour_in;
|
|
}
|