dawn-cmake/test/identifiers/underscore/prefix/upper/fn.wgsl.expected.hlsl

19 lines
135 B
HLSL

[numthreads(1, 1, 1)]
void unused_entry_point() {
return;
}
void A() {
}
void _A() {
}
void B() {
A();
}
void _B() {
_A();
}