mirror of
https://github.com/0intro/wmii
synced 2024-11-28 16:43:08 +03:00
12 lines
278 B
C
12 lines
278 B
C
/* Copyright ©2007-2010 Kris Maglione <maglione.k at Gmail>
|
|
* See LICENSE file for license details.
|
|
*/
|
|
#include "../x11.h"
|
|
|
|
void
|
|
fill(Image *dst, Rectangle r, Color *col) {
|
|
setgccol(dst, col);
|
|
XFillRectangle(display, dst->xid, dst->gc,
|
|
r.min.x, r.min.y, Dx(r), Dy(r));
|
|
}
|