sets text clipping parameters
| 273 | |
| 274 | // sets text clipping parameters |
| 275 | void grtext_SetParameters(int left, int top, int right, int bottom, int tabspace) { |
| 276 | Grtext_left = left; |
| 277 | Grtext_top = top; |
| 278 | Grtext_right = right; |
| 279 | Grtext_bottom = bottom; |
| 280 | Grtext_tabspace = tabspace; |
| 281 | } |
| 282 | |
| 283 | // gets text clipping parameters |
| 284 | void grtext_GetParameters(int *left, int *top, int *right, int *bottom, int *tabspace) { |
no outgoing calls
no test coverage detected