blob: e1273e679de2d51d4dc1ea4c368873e25cdbcbfc (
plain)
1
2
3
4
5
6
7
|
private int[] imageSizeTemp = new int[1];
private final int imageSizeInBytes(int format, int type, int width, int height, int depth, boolean pack) {
return GLBuffers.sizeof(this, imageSizeTemp, format, type, width, height, depth, pack) ;
}
|