gets text clipping parameters
| 282 | |
| 283 | // gets text clipping parameters |
| 284 | void grtext_GetParameters(int *left, int *top, int *right, int *bottom, int *tabspace) { |
| 285 | if (left) |
| 286 | *left = Grtext_left; |
| 287 | if (top) |
| 288 | *top = Grtext_top; |
| 289 | if (right) |
| 290 | *right = Grtext_right; |
| 291 | if (bottom) |
| 292 | *bottom = Grtext_bottom; |
| 293 | if (tabspace) |
| 294 | *tabspace = Grtext_tabspace; |
| 295 | } |
| 296 | |
| 297 | // sets the color for text |
| 298 | void grtext_SetColor(ddgr_color col) { |
no outgoing calls
no test coverage detected