diff --git a/vendor/wasm/js/events.odin b/vendor/wasm/js/events.odin index 2d3f01ceb..4e786e2be 100644 --- a/vendor/wasm/js/events.odin +++ b/vendor/wasm/js/events.odin @@ -33,6 +33,7 @@ Event_Kind :: enum u32 { Submit, Blur, Change, + HashChange, Select, Animation_Start, @@ -112,6 +113,7 @@ event_kind_string := [Event_Kind]string{ .Submit = "submit", .Blur = "blur", .Change = "change", + .HashChange = "hashchange", .Select = "select", .Animation_Start = "animationstart", diff --git a/vendor/wgpu/wgpu.odin b/vendor/wgpu/wgpu.odin index 4efe572cf..b486faf3a 100644 --- a/vendor/wgpu/wgpu.odin +++ b/vendor/wgpu/wgpu.odin @@ -716,12 +716,7 @@ BufferDescriptor :: struct { mappedAtCreation: b32, } -Color :: struct { - r: f64, - g: f64, - b: f64, - a: f64, -} +Color :: [4]f32 CommandBufferDescriptor :: struct { nextInChain: ^ChainedStruct,