mirror of
https://github.com/a-b-street/abstreet.git
synced 2024-12-19 12:21:55 +03:00
9 lines
95 B
Plaintext
9 lines
95 B
Plaintext
|
#version 140
|
||
|
|
||
|
in vec4 pass_color;
|
||
|
out vec4 f_color;
|
||
|
|
||
|
void main() {
|
||
|
f_color = pass_color;
|
||
|
}
|