Add print functionality to v2 (#2822)

* Add print functionality to v2

* Update changelog

* Update runtime docs

---------

Co-authored-by: Lea Anthony <lea.anthony@gmail.com>
This commit is contained in:
Andreas Christou
2023-09-06 07:55:36 +10:00
committed by GitHub
co-authored by Lea Anthony
parent d599fd80cb
commit 886bcc7b47
10 changed files with 65 additions and 0 deletions
+5
View File
@@ -179,3 +179,8 @@ func WindowSetBackgroundColour(ctx context.Context, R, G, B, A uint8) {
}
appFrontend.WindowSetBackgroundColour(col)
}
func WindowPrint(ctx context.Context) {
appFrontend := getFrontend(ctx)
appFrontend.WindowPrint()
}