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