(int x, int y, int w, int h)
| 1238 | } |
| 1239 | |
| 1240 | @Override |
| 1241 | public void viewport(int x, int y, int w, int h) { |
| 1242 | float scale = getPixelScale(); |
| 1243 | viewportImpl((int)scale * x, (int)(scale * y), (int)(scale * w), (int)(scale * h)); |
| 1244 | } |
| 1245 | |
| 1246 | @Override |
| 1247 | protected void viewportImpl(int x, int y, int w, int h) { |
nothing calls this directly
no test coverage detected