Files
bluflame/hgplus/ShaderMinifier/tests/unit/rename_conflict.frag
2026-04-18 22:31:51 +02:00

17 lines
152 B
GLSL

// test with --no-renaming-list i
int foo(int a, int d)
{
return a + 1;
}
int i()
{
foo(0);
}
int bar(int b, int c, int d)
{
return b + i();
}