26 lines
406 B
HLSL
26 lines
406 B
HLSL
struct tint_symbol {
|
|
float4 value : SV_Position;
|
|
};
|
|
|
|
void countOneBits_fd88b2() {
|
|
int res = countbits(1);
|
|
}
|
|
|
|
tint_symbol vertex_main() {
|
|
countOneBits_fd88b2();
|
|
const tint_symbol tint_symbol_1 = {float4(0.0f, 0.0f, 0.0f, 0.0f)};
|
|
return tint_symbol_1;
|
|
}
|
|
|
|
void fragment_main() {
|
|
countOneBits_fd88b2();
|
|
return;
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void compute_main() {
|
|
countOneBits_fd88b2();
|
|
return;
|
|
}
|
|
|