mirror of
https://github.com/vulkano-rs/vulkano.git
synced 2024-11-22 06:45:23 +00:00
10 lines
134 B
Plaintext
10 lines
134 B
Plaintext
|
#version 450
|
||
|
|
||
|
layout(location = 0) in vec4 in_color;
|
||
|
|
||
|
layout(location = 0) out vec4 f_color;
|
||
|
|
||
|
void main() {
|
||
|
f_color = in_color;
|
||
|
}
|