This repository has been archived on 2023-10-09. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-archive/source/blender/gpu/shaders/gpu_shader_flat_id_frag.glsl
2018-04-17 13:24:48 +02:00

9 lines
76 B
GLSL

flat in uint finalId;
out uint fragId;
void main()
{
fragId = finalId;
}