13 lines
376 B
C
13 lines
376 B
C
#ifndef __mask_h
|
|
#define __mask_h
|
|
|
|
#include "render.h"
|
|
#include "geom.h"
|
|
|
|
RrPixmapMask *RrPixmapMaskNew(const RrInstance *inst,
|
|
gint w, gint h, const gchar *data);
|
|
void RrPixmapMaskFree(RrPixmapMask *m);
|
|
RrPixmapMask *RrPixmapMaskCopy(const RrPixmapMask *src);
|
|
void RrPixmapMaskDraw(Pixmap p, const RrTextureMask *m, const RrRect *area);
|
|
|
|
#endif
|