blob: c2486f5284f36aed9d281ee0f97bd421c7f9f563 [file] [log] [blame]
//
// fragment_main
//
RWByteAddressBuffer sb_rw : register(u0);
void atomicAnd_85a8d9() {
uint res = 0u;
uint v = 0u;
sb_rw.InterlockedAnd(0u, 1u, v);
uint x_9 = v;
res = x_9;
}
void fragment_main_1() {
atomicAnd_85a8d9();
}
void fragment_main() {
fragment_main_1();
}
//
// compute_main
//
RWByteAddressBuffer sb_rw : register(u0);
void atomicAnd_85a8d9() {
uint res = 0u;
uint v = 0u;
sb_rw.InterlockedAnd(0u, 1u, v);
uint x_9 = v;
res = x_9;
}
void compute_main_1() {
atomicAnd_85a8d9();
}
[numthreads(1, 1, 1)]
void compute_main() {
compute_main_1();
}