shithub: libgraphics

ref: 3134de0eaeb4c9d7d7703bba1d76a4a477f7c6f4
dir: /internal.h/

View raw version
/* alloc */
void *emalloc(ulong);
void *erealloc(void*, ulong);
Memimage *eallocmemimage(Rectangle, ulong);

/* fb */
Framebuf *mkfb(Rectangle);
void rmfb(Framebuf*);
Framebufctl *mkfbctl(Rectangle);
void rmfbctl(Framebufctl*);

/* render */
void shade(Framebuf*, Scene*, Shader*);

/* util */
int min(int, int);
int max(int, int);
void memsetd(double*, double, usize);

/* nanosec */
uvlong nanosec(void);