mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 13:50:04 +00:00
11 lines
100 B
GLSL
11 lines
100 B
GLSL
|
|
#version 150
|
|
|
|
in vec4 colourV;
|
|
out vec4 fragColour;
|
|
|
|
void main(void)
|
|
{
|
|
fragColour = colourV;
|
|
}
|