xref: /plan9-contrib/sys/src/cmd/unix/drawterm/gui-win32/alloc.c (revision 781103c4074deb8af160e8a0da2742ba6b29dc2b)
1 #include <u.h>
2 #include <libc.h>
3 #include <draw.h>
4 #include <memdraw.h>
5 
6 Memimage*
7 allocmemimage(Rectangle r, ulong chan)
8 {
9 	return _allocmemimage(r, chan);
10 }
11 
12 void
13 freememimage(Memimage *i)
14 {
15 	_freememimage(i);
16 }
17 
18 void
19 memfillcolor(Memimage *i, ulong val)
20 {
21 	_memfillcolor(i, val);
22 }
23 
24