(int left, int top, int right, int bottom, int color)
| 443 | } |
| 444 | |
| 445 | public static void drawRectInline(int left, int top, int right, int bottom, int color) { |
| 446 | drawRect(left, top, right, top + 1, color); |
| 447 | drawRect(right - 1, top, right, bottom, color); |
| 448 | drawRect(left, bottom - 1, right, bottom, color); |
| 449 | drawRect(left, top, left + 1, bottom, color); |
| 450 | } |
| 451 | |
| 452 | public static void drawScaledCenteredString(String string, int x, int y, float scale) { |
| 453 | GLUtil.pushMatrix(); |
no test coverage detected