(int target, int format, int id, int x, int y,
int w, int h, int[] buffer)
| 1214 | |
| 1215 | |
| 1216 | protected void copyToTexture(int target, int format, int id, int x, int y, |
| 1217 | int w, int h, int[] buffer) { |
| 1218 | copyToTexture(target, format, id, x, y, w, h, IntBuffer.wrap(buffer)); |
| 1219 | |
| 1220 | } |
| 1221 | |
| 1222 | protected void copyToTexture(int target, int format, int id, int x, int y, |
| 1223 | int w, int h, IntBuffer buffer) { |
no test coverage detected