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