| 1438 | // Write a command to flush the PostScript buffer. |
| 1439 | |
| 1440 | void PsStrokeForce() |
| 1441 | { |
| 1442 | if (gi.cStroke > 0) { // Render any existing path |
| 1443 | fprintf(gi.file, "stroke\n"); |
| 1444 | gi.cStroke = 0; |
| 1445 | gi.xPen = -1; // Invalidate PolyLine cache |
| 1446 | } |
| 1447 | } |
| 1448 | |
| 1449 | |
| 1450 | // Indicate that a certain number of PostScript commands have been done. |
no outgoing calls
no test coverage detected