blob: ec8a2860a00eeb33ba5a66a6eac4336e86ed32a3 [file] [log] [blame]
int2 tint_count_trailing_zeros(int2 v) {
uint2 x = uint2(v);
uint2 b16 = (bool2((x & (65535u).xx)) ? (0u).xx : (16u).xx);
x = (x >> b16);
uint2 b8 = (bool2((x & (255u).xx)) ? (0u).xx : (8u).xx);
x = (x >> b8);
uint2 b4 = (bool2((x & (15u).xx)) ? (0u).xx : (4u).xx);
x = (x >> b4);
uint2 b2 = (bool2((x & (3u).xx)) ? (0u).xx : (2u).xx);
x = (x >> b2);
uint2 b1 = (bool2((x & (1u).xx)) ? (0u).xx : (1u).xx);
uint2 is_zero = ((x == (0u).xx) ? (1u).xx : (0u).xx);
return int2((((((b16 | b8) | b4) | b2) | b1) + is_zero));
}
RWByteAddressBuffer prevent_dce : register(u0);
int2 countTrailingZeros_327c37() {
int2 arg_0 = (1).xx;
int2 res = tint_count_trailing_zeros(arg_0);
return res;
}
void fragment_main() {
prevent_dce.Store2(0u, asuint(countTrailingZeros_327c37()));
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store2(0u, asuint(countTrailingZeros_327c37()));
return;
}
struct VertexOutput {
float4 pos;
int2 prevent_dce;
};
struct tint_symbol_1 {
nointerpolation int2 prevent_dce : TEXCOORD0;
float4 pos : SV_Position;
};
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = countTrailingZeros_327c37();
return tint_symbol;
}
tint_symbol_1 vertex_main() {
VertexOutput inner_result = vertex_main_inner();
tint_symbol_1 wrapper_result = (tint_symbol_1)0;
wrapper_result.pos = inner_result.pos;
wrapper_result.prevent_dce = inner_result.prevent_dce;
return wrapper_result;
}