/* later: XCBFreePixmap( c, bitmap ); */
/* later: XCBFreeGC( c, gc ); */
- XCBSync( xc, NULL );
+ XCBFlush( xc );
}
void
InitBitmapAndGCs();
- XCBSync(xc, NULL);
+ XCBFlush(xc);
}
}
/* FillRct.c */
-/* Xlib does merging of requests, but the Sync and frequent DrawGC changes
+/* Xlib does merging of requests, but the Flush and frequent DrawGC changes
defeat this mechanism */
void
XCBPolyFillRectangle( xc, drawable, DrawGC, 1, &rect );
- XCBSync( xc, NULL );
+ XCBFlush( xc );
NekoLastX = x;
NekoLastY = y;
XCBPolyFillRectangle( xc, drawable, NekoLastGC, 1, &rect );
- XCBSync( xc, NULL );
+ XCBFlush( xc );
}