blob: 1843fe8f8509ea9601572686d33f6b7d7458b54f [file] [log] [blame]
fn asin_c0c272() -> f32 {
var res : f32 = asin(0.47942554950714111328f);
return res;
}
@group(0) @binding(0) var<storage, read_write> prevent_dce : f32;
@fragment
fn fragment_main() {
prevent_dce = asin_c0c272();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = asin_c0c272();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
@location(0) @interpolate(flat)
prevent_dce : f32,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
out.prevent_dce = asin_c0c272();
return out;
}