dawn-cmake/test/identifiers/underscore/prefix/lower/let.wgsl.expected.hlsl

13 lines
166 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
static const int a = 1;
static const int _a = 2;
void f() {
const int b = a;
const int _b = _a;
}