Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gpu_shader_flat_id_frag.glsl « shaders « gpu « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: aa6f30531ae0a041883fda6cf985734e570aa65f (plain)
1
2
3
4
5
6
7
8

flat in uint finalId;
out uint fragId;

void main()
{
	fragId = finalId;
}