Method
readPixelsImpl
(int x, int y, int width, int height, int format, int type, Buffer buffer)
Source from the content-addressed store, hash-verified
| 1253 | // Reading Pixels |
| 1254 | |
| 1255 | @Override |
| 1256 | protected void readPixelsImpl(int x, int y, int width, int height, int format, int type, Buffer buffer) { |
| 1257 | gl.glReadPixels(x, y, width, height, format, type, buffer); |
| 1258 | } |
| 1259 | |
| 1260 | @Override |
| 1261 | protected void readPixelsImpl(int x, int y, int width, int height, int format, int type, long offset) { |
Tested by
no test coverage detected