-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump submodule versions (handle new return codes from umka)
Signed-off-by: Marek Maškarinec <[email protected]>
- Loading branch information
1 parent
9f6c13a
commit 5f3c2c9
Showing
17 changed files
with
42 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule sokol
updated
13 files
+15 −3 | CHANGELOG.md | |
+2 −0 | README.md | |
+1 −1 | bindgen/gen_rust.py | |
+16 −2 | sokol_app.h | |
+10 −10 | sokol_gfx.h | |
+1 −1 | sokol_time.h | |
+1 −1 | tests/functional/sokol_gfx_test.c | |
+6 −2 | util/sokol_debugtext.h | |
+1 −1 | util/sokol_gfx_imgui.h | |
+1 −1 | util/sokol_gl.h | |
+1 −1 | util/sokol_imgui.h | |
+1 −1 | util/sokol_nuklear.h | |
+1 −1 | util/sokol_spine.h |
Submodule umka
updated
27 files
+5 −0 | README.md | |
+5 −5 | doc/api.md | |
+2 −8 | doc/lang.md | |
+6 −0 | doc/lib.md | |
+2 −2 | examples/3dcam/3dcam.c | |
+6 −6 | examples/lisp/ev.um | |
+2 −2 | examples/lisp/lex.um | |
+1 −1 | playground/umka.js | |
+ − | resources/fem.png | |
+14 −12 | runtime/std.um | |
+3 −3 | runtime/um2h.um | |
+20 −12 | src/umka.c | |
+12 −8 | src/umka_api.c | |
+4 −4 | src/umka_api.h | |
+4 −2 | src/umka_common.c | |
+3 −2 | src/umka_common.h | |
+0 −1 | src/umka_compiler.c | |
+7 −0 | src/umka_decl.c | |
+16 −13 | src/umka_expr.c | |
+1 −1 | src/umka_ident.c | |
+14 −12 | src/umka_runtime_src.h | |
+1 −1 | src/umka_stmt.c | |
+109 −94 | src/umka_vm.c | |
+5 −2 | src/umka_vm.h | |
+5 −5 | tests/maps.um | |
+2 −2 | tests/typeeq.um | |
+1 −1 | tests/utf8test.um |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,4 +26,5 @@ import ( | |
"window.um" | ||
) | ||
|
||
fn init*() {} | ||
fn init*() { | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,6 @@ var ( | |
) | ||
|
||
fn init*() { | ||
exit() | ||
img = image.load("etc/test.png") | ||
window.setViewport(th.Vf2{192, 168}) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters