moved draw.c to libdraw.a
This commit is contained in:
13
draw/cleanupdraw.c
Normal file
13
draw/cleanupdraw.c
Normal file
@ -0,0 +1,13 @@
|
||||
/* See LICENSE file for copyright and license details. */
|
||||
#include <X11/Xlib.h>
|
||||
#include "draw.h"
|
||||
|
||||
void
|
||||
cleanupdraw(DC *dc) {
|
||||
if(dc->font.set)
|
||||
XFreeFontSet(dc->dpy, dc->font.set);
|
||||
else
|
||||
XFreeFont(dc->dpy, dc->font.xfont);
|
||||
XFreePixmap(dc->dpy, dc->drawable);
|
||||
XFreeGC(dc->dpy, dc->gc);
|
||||
}
|
Reference in New Issue
Block a user