ref: be768764da1d66ac83a5ee9c5a0a24abfaf2bfc1
dir: /gui-osx/draw.c/
#include <u.h> #include <libc.h> #include <draw.h> #include <memdraw.h> void memimagedraw(Memimage *dst, Rectangle r, Memimage *src, Point sp, Memimage *mask, Point mp, int op) { _memimagedraw(_memimagedrawsetup(dst, r, src, sp, mask, mp, op)); } ulong pixelbits(Memimage *m, Point p) { return _pixelbits(m, p); } void memimageinit(void) { _memimageinit(); }