1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #include "sys-defines.h"
- #include "extern.h"
- void
- _pl_g_paint_path (S___(Plotter *_plotter))
- {
- return;
- }
- bool
- _pl_g_path_is_flushable (S___(Plotter *_plotter))
- {
- return true;
- }
- void
- _pl_g_maybe_prepaint_segments (R___(Plotter *_plotter) int prev_num_segments)
- {
- return;
- }
- bool
- _pl_g_paint_paths (S___(Plotter *_plotter))
- {
- return true;
- }
|