My dmenu build
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

14 lines
293 B

  1. /* See LICENSE file for copyright and license details. */
  2. #include <X11/Xlib.h>
  3. #include "draw.h"
  4. void
  5. cleanupdraw(DC *dc) {
  6. if(dc->font.set)
  7. XFreeFontSet(dc->dpy, dc->font.set);
  8. else
  9. XFreeFont(dc->dpy, dc->font.xfont);
  10. XFreePixmap(dc->dpy, dc->drawable);
  11. XFreeGC(dc->dpy, dc->gc);
  12. }