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