| 198 | } |
| 199 | |
| 200 | void ofClipWindow(float x, float y, float width, float height, bool intersectWithExisting) |
| 201 | { |
| 202 | if (intersectWithExisting) |
| 203 | nvgIntersectScissor(gNanoVG, x, y, width, height); |
| 204 | else |
| 205 | nvgScissor(gNanoVG, x, y, width, height); |
| 206 | } |
| 207 | |
| 208 | void ofResetClipWindow() |
| 209 | { |
no test coverage detected