| 352 | } |
| 353 | |
| 354 | void glPrintString(void *font, const char *str) |
| 355 | { |
| 356 | int i,l = (int)strlen(str); |
| 357 | |
| 358 | for(i=0; i<l; i++) |
| 359 | { |
| 360 | glutBitmapCharacter(font,*str++); |
| 361 | } |
| 362 | } |
| 363 | |
| 364 | void drawConfigChanged() |
| 365 | { |
no outgoing calls
no test coverage detected