9 lines
76 B
GLSL
9 lines
76 B
GLSL
|
|
flat in uint finalId;
|
|
out uint fragId;
|
|
|
|
void main()
|
|
{
|
|
fragId = finalId;
|
|
}
|