rename, refactor again.

pull/2/head
Christopher Jeffrey 13 years ago
parent 8610fd1f02
commit b42eee1ef3

@ -966,15 +966,15 @@ paint_all(Display *dpy, XserverRegion region) {
root_buffer = root_picture;
#else
if (!root_buffer) {
Pixmap rootPixmap = XCreatePixmap(
Pixmap root_pixmap = XCreatePixmap(
dpy, root, root_width, root_height,
DefaultDepth(dpy, scr));
root_buffer = XRenderCreatePicture(dpy, rootPixmap,
root_buffer = XRenderCreatePicture(dpy, root_pixmap,
XRenderFindVisualFormat(dpy, DefaultVisual(dpy, scr)),
0, 0);
XFreePixmap(dpy, rootPixmap);
XFreePixmap(dpy, root_pixmap);
}
#endif

Loading…
Cancel
Save