From 5b7b1b50c4c358e7d36a0b2595bdb06348b58f3a Mon Sep 17 00:00:00 2001 From: Brendan Hansen Date: Mon, 20 Sep 2021 23:18:04 -0500 Subject: [PATCH] synchronizing --- src/app/app.onyx | 2 +- src/features/wasm/wasm.onyx | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) 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 :: () { -- 2.25.1