mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 17:18:12 -05:00
12 lines
156 B
Text
12 lines
156 B
Text
#version 140
|
|
in vec4 col;
|
|
out vec4 fragCol;
|
|
void main ()
|
|
{
|
|
fragCol = col;
|
|
}
|
|
|
|
|
|
// stats: 0 alu 0 tex 0 flow
|
|
// inputs: 1
|
|
// #0: col (high float) 4x1 [-1]
|