blob: a3faf3f4c47358a52b077cb0634209fe5f8916b0 [file] [log] [blame]
//
// fragment_main
//
void refract_cf1629() {
float2 res = (-3.0f).xx;
}
void fragment_main() {
refract_cf1629();
return;
}
//
// compute_main
//
void refract_cf1629() {
float2 res = (-3.0f).xx;
}
[numthreads(1, 1, 1)]
void compute_main() {
refract_cf1629();
return;
}
//
// vertex_main
//
void refract_cf1629() {
float2 res = (-3.0f).xx;
}
struct VertexOutput {
float4 pos;
};
struct tint_symbol_1 {
float4 pos : SV_Position;
};
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
refract_cf1629();
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;
return wrapper_result;
}