all repos — openbox @ 3f32dfa87e08556d7f6a58efab9b7479e515be26

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 "kernel/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 Rect *area);

#endif