From: Brendan Hansen Date: Tue, 21 Sep 2021 04:18:04 +0000 (-0500) Subject: synchronizing X-Git-Url: https://git.brendanfh.com/?a=commitdiff_plain;h=5b7b1b50c4c358e7d36a0b2595bdb06348b58f3a;p=onyx-wasm-analyzer.git synchronizing --- diff --git a/src/app/app.onyx b/src/app/app.onyx index 928e8aa..2434d89 100644 --- a/src/app/app.onyx +++ b/src/app/app.onyx @@ -434,7 +434,7 @@ open_tool_opener :: macro () { #private_file { background_tile_texture : gfx.Texture; - draw_background_lines :: (width: f32, height: f32, line_color := gfx.Color4.{0.2, 0.2, 0.2}, line_spacing := 32.0f) { + draw_background_lines :: (width, height: f32, line_color := gfx.Color4.{0.2, 0.2, 0.2}, line_spacing := 32.0f) { gl :: package gl gfx.save_matrix(); diff --git a/src/features/wasm/wasm.onyx b/src/features/wasm/wasm.onyx index 3e048ba..5f1657a 100644 --- a/src/features/wasm/wasm.onyx +++ b/src/features/wasm/wasm.onyx @@ -7,6 +7,13 @@ package feature.wasm use package core use package debug { debug_log } + + use package wasm_utils +} + +#private { + wasm_state : WasmBinary; + wasm_sections : WasmSections; } setup :: () {