13 lines
169 B
HLSL
13 lines
169 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__;
|
||
|
}
|