all repos — openbox @ c920b4769ef294d9421dc0220692b6b23c7a20e5

openbox fork - make it a bit more like ryudo

render/mask.h (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
#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