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