mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-23 17:30:42 +00:00
11 lines
142 B
GLSL
11 lines
142 B
GLSL
|
#version 450
|
||
|
|
||
|
layout (location = 0) in flat uint entid;
|
||
|
layout (location = 0) out uint frag_entid;
|
||
|
|
||
|
void
|
||
|
main (void)
|
||
|
{
|
||
|
frag_entid = entid;
|
||
|
}
|