quakeforge/libs/video/renderer/vulkan/shader/entid.frag

11 lines
142 B
GLSL
Raw Normal View History

#version 450
layout (location = 0) in flat uint entid;
layout (location = 0) out uint frag_entid;
void
main (void)
{
frag_entid = entid;
}