blob: 4917c47e703379ef2a373e1ed94a4b8e4ba52883 [file] [log] [blame]
struct Light {
position : vec3<f32>;
colour : vec3<f32>;
};
struct Lights {
light : @stride(32) array<Light>;
};
@group(0) @binding(1) var<storage, read> lights : Lights;