blob: d4b3f9018f8dc58f5f22041823592ce02028f8f4 [file] [log] [blame]
RWByteAddressBuffer prevent_dce : register(u0);
vector<float16_t, 3> smoothstep_6e7a74() {
vector<float16_t, 3> arg_0 = (float16_t(2.0h)).xxx;
vector<float16_t, 3> arg_1 = (float16_t(4.0h)).xxx;
vector<float16_t, 3> arg_2 = (float16_t(3.0h)).xxx;
vector<float16_t, 3> res = smoothstep(arg_0, arg_1, arg_2);
return res;
}
void fragment_main() {
prevent_dce.Store<vector<float16_t, 3> >(0u, smoothstep_6e7a74());
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store<vector<float16_t, 3> >(0u, smoothstep_6e7a74());
return;
}
struct VertexOutput {
float4 pos;
vector<float16_t, 3> prevent_dce;
};
struct tint_symbol_1 {
nointerpolation vector<float16_t, 3> 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 = smoothstep_6e7a74();
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;
}