summaryrefslogtreecommitdiff
path: root/render/mask.h
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2003-03-17 00:49:05 +0000
committerDana Jansens <danakj@orodu.net>2003-03-17 00:49:05 +0000
commitb824e6ad8e359bfd2762a5e35d62e1a1f4c9f20c (patch)
treeb5ab973ace618f08812211ac2b72c8f40c0578fa /render/mask.h
parent14f17c96d069f08f73094e66692d57aeffa69f6b (diff)
add funcs to create/free pixmap_masks
Diffstat (limited to 'render/mask.h')
-rw-r--r--render/mask.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/render/mask.h b/render/mask.h
index 2d507a63..103b33d0 100644
--- a/render/mask.h
+++ b/render/mask.h
@@ -9,4 +9,7 @@ typedef struct {
guint w, h;
} pixmap_mask;
+pixmap_mask *pixmap_mask_new(int w, int h, char *data);
+void pixmap_mask_free(pixmap_mask *m);
+
#endif