From 2996690bd17e79aba64cb58642aa5877014b3659 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Thu, 1 Feb 2024 15:28:43 +0900 Subject: [PATCH] [qwaq] Add a function to set imt context cbuf Hopefully only temporary until I get ruamoko cbuf support done. --- ruamoko/qwaq/builtins/graphics.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ruamoko/qwaq/builtins/graphics.c b/ruamoko/qwaq/builtins/graphics.c index 774570b2f..6c748fa65 100644 --- a/ruamoko/qwaq/builtins/graphics.c +++ b/ruamoko/qwaq/builtins/graphics.c @@ -160,14 +160,21 @@ bi_setevents (progs_t *pr, void *_res) qcevent_data = P_POINTER (pr, 1); } +static void +bi_setctxcbuf (progs_t *pr, void *_res) +{ + IMT_SetContextCbuf (P_INT (pr, 0), qwaq_cbuf); +} + #define bi(x,n,np,params...) {#x, bi_##x, n, np, {params}} #define p(type) PR_PARAM(type) static builtin_t builtins[] = { bi(newscene, -1, 1, p(long)), - bi(refresh, -1, 0), + bi(refresh, -1, 1, p(long)), bi(refresh_2d, -1, 1, p(func)), bi(setpalette, -1, 2, p(ptr), p(ptr)), bi(setevents, -1, 2, p(func), p(ptr)), + bi(setctxcbuf, -1, 1, p(int)), {0} };