diff options
| author | Dana Jansens <danakj@orodu.net> | 2003-03-21 20:25:34 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2003-03-21 20:25:34 +0000 |
| commit | 0a69cfc6d2cf672634e95d5eb2015434dd924abc (patch) | |
| tree | ef28312c548d2df4aa44b3e4cd29490427234767 /render/mask.c | |
| parent | b10548f0ddf7ac9deb85372332686c6d8651a1f6 (diff) | |
add strict ansi compliance
Diffstat (limited to 'render/mask.c')
| -rw-r--r-- | render/mask.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/render/mask.c b/render/mask.c index 868c7612..5f5aa263 100644 --- a/render/mask.c +++ b/render/mask.c @@ -19,19 +19,19 @@ void pixmap_mask_free(pixmap_mask *m) void mask_draw(Pixmap p, TextureMask *m, int width, int height) { int x, y; - if (m->mask == None) return; // no mask given + if (m->mask == None) return; /* no mask given */ - // set the clip region + /* 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 + /* 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 + /* unset the clip region */ XSetClipMask(ob_display, m->color->gc, None); XSetClipOrigin(ob_display, m->color->gc, 0, 0); } |
