[oden] Colors

But they don't work
This commit is contained in:
John Doty 2023-08-26 08:58:00 -07:00
parent db0f22b1db
commit 106db89e9b
5 changed files with 77 additions and 24 deletions

View file

@ -8,11 +8,11 @@ struct VertexInput {
};
struct InstanceInput {
@location(5) center: vec2<f32>,
@location(6) radius: f32,
@location(7) stroke_width: f32,
@location(8) stroke_color: vec4<f32>,
@location(9) fill_color: vec4<f32>,
@location(4) center: vec2<f32>,
@location(5) radius: f32,
@location(6) stroke_width: f32,
@location(7) stroke_color: vec4<f32>,
@location(8) fill_color: vec4<f32>,
};
struct VertexOutput {