| 1450 | // Indicate that a certain number of PostScript commands have been done. |
| 1451 | |
| 1452 | void PsStroke(int n) |
| 1453 | { |
| 1454 | gi.cStroke += n; |
| 1455 | if (gi.cStroke > 2000) // Whenever we reach a certain limit, flush. |
| 1456 | PsStrokeForce(); |
| 1457 | } |
| 1458 | |
| 1459 | |
| 1460 | // Set the type of line end to be used by PostScript commands. If linecap is |
no test coverage detected