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