123456789101112131415161718192021222324252627282930313233343536373839 |
- #include "sys-defines.h"
- #include "extern.h"
- bool
- _pl_x_flush_output (S___(Plotter *_plotter))
- {
- XSync (_plotter->x_dpy, (Bool)false);
-
- _maybe_handle_x_events (S___(_plotter));
- return true;
- }
|