blob: 5097807bd9779375190bd17c74704a25e4fd7e42 [file] [log] [blame]
fn func(pointer : ptr<private, vec4<f32>>) {
*pointer = vec4<f32>();
}
var<private> P : vec4<f32>;
@compute @workgroup_size(1)
fn main() {
func(&P);
}