mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-01-21 21:24:46 +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;
|
|
}
|