mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-05 08:51:28 +00:00
[qwaq] Add a function to set imt context cbuf
Hopefully only temporary until I get ruamoko cbuf support done.
This commit is contained in:
parent
926dd308c6
commit
2996690bd1
1 changed files with 8 additions and 1 deletions
|
@ -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}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue