Skip to content

Instantly share code, notes, and snippets.

@sidorares
Created May 3, 2012 04:09
Show Gist options
  • Save sidorares/2583100 to your computer and use it in GitHub Desktop.
Save sidorares/2583100 to your computer and use it in GitHub Desktop.
create 32 bit pixmap test
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <stdio.h>
int ApplicationErrorHandler(Display *display, XErrorEvent *theEvent)
{
(void) fprintf(stderr,
"Ignoring Xlib error: error code %d request code %d\n",
theEvent->error_code,
theEvent->request_code) ;
return 0 ;
}
int main(int argc, char **argv)
{
Display *dpy;
dpy = XOpenDisplay(NULL);
XSetErrorHandler(ApplicationErrorHandler);
Pixmap p;
p = XCreatePixmap(dpy, XDefaultRootWindow(dpy), 100, 100, 32);
XSync(dpy, True);
printf("%i", (int)p);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment