(String filename)
| 103 | texture.reloadFrom(file.getAbsolutePath()); |
| 104 | } |
| 105 | } |
| 106 | }); |
| 107 | ws.addObserver(o); |
| 108 | } |
| 109 | } |
| 110 | |
| 111 | private void reloadFrom(String filename) { |
| 112 | int[] wh = FastJPEG.j.dimensions(filename); |
| 113 | if (wh[0] == specification.width && wh[1] == specification.height) |
no test coverage detected