Subversion Repositories planix.SVN

Rev

Rev 2 | Blame | Compare with Previous | Last modification | View Log | RSS feed

#include <u.h>
#include <libc.h>
#include <draw.h>
#include <memdraw.h>

Memimage*
allocmemimage(Rectangle r, ulong chan)
{
        return _allocmemimage(r, chan);
}

void
freememimage(Memimage *i)
{
        _freememimage(i);
}

void
memfillcolor(Memimage *i, ulong val)
{
        _memfillcolor(i, val);
}