mirror of
https://github.com/bulletphysics/bullet3
synced 2025-01-09 00:50:17 +00:00
11 lines
100 B
Plaintext
11 lines
100 B
Plaintext
|
|
||
|
#version 150
|
||
|
|
||
|
in vec4 colourV;
|
||
|
out vec4 fragColour;
|
||
|
|
||
|
void main(void)
|
||
|
{
|
||
|
fragColour = colourV;
|
||
|
}
|