mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
10 lines
119 B
Text
10 lines
119 B
Text
#version 140
|
|
in vec4 col;
|
|
out vec4 fragCol;
|
|
void main ()
|
|
{
|
|
vec4 tmpvar_1;
|
|
tmpvar_1 = col;
|
|
fragCol = tmpvar_1;
|
|
}
|
|
|