diff options
| author | Derek Foreman <manmower@gmail.com> | 2003-03-17 01:08:34 +0000 |
|---|---|---|
| committer | Derek Foreman <manmower@gmail.com> | 2003-03-17 01:08:34 +0000 |
| commit | f1db2721541af239f6af053526abd4cf80b750e0 (patch) | |
| tree | ed5c5db8704326e3f8dad8f04fd53f70d4774aac /render/mask.c | |
| parent | 57314ce52246ce74ff2c64c7fc2da8794a8aaa4e (diff) | |
in keeping with my tradition of committing untested code, here is the
pixmap mask rendering code ported from the old otk dirs
Diffstat (limited to 'render/mask.c')
| -rw-r--r-- | render/mask.c | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/render/mask.c b/render/mask.c index 14836be7..868c7612 100644 --- a/render/mask.c +++ b/render/mask.c @@ -16,6 +16,22 @@ void pixmap_mask_free(pixmap_mask *m) g_free(m); } -void mask_draw(pixmap_mask *p, TextureMask *m) +void mask_draw(Pixmap p, TextureMask *m, int width, int height) { + int x, y; + if (m->mask == None) return; // no mask given + + // set the clip region + x = (width - m->mask->w) / 2; + y = (height - m->mask->h) / 2; + XSetClipMask(ob_display, m->color->gc, m->mask->mask); + XSetClipOrigin(ob_display, m->color->gc, x, y); + + // fill in the clipped region + XFillRectangle(ob_display, p, m->color->gc, x, y, + x + m->mask->w, y + m->mask->h); + + // unset the clip region + XSetClipMask(ob_display, m->color->gc, None); + XSetClipOrigin(ob_display, m->color->gc, 0, 0); } |
