https://github.com/shader-slang/slang
Raw File
Tip revision: 926009a58315845b3a3a95e2724486a6c9e987ea authored by Tomáš Pazdiora on 10 May 2024, 01:17:38 UTC
fix typo (#4144)
Tip revision: 926009a
gh-666.slang
// gh-666.slang

//TEST:COMPARE_HLSL: -profile ps_5_0 -entry main

static const uint foo = 1;
static const uint bar = foo;

float4 main() : SV_TARGET
{
	return bar;
}
back to top