Example usage for Java java.awt.image DataBufferInt fields, constructors, methods, implement or subclass
The text is from its open source code.
DataBufferInt(int size, int numBanks) Constructs an integer-based DataBuffer with the specified number of banks, all of which are the specified size. | |
DataBufferInt(int[] dataArray, int size) Constructs an integer-based DataBuffer with a single bank using the specified array. | |
DataBufferInt(int[][] dataArray, int size) Constructs an integer-based DataBuffer with the specified arrays. |
int[][] | getBankData() Returns the data arrays for all banks. |
int[] | getData(int bank) Returns the data array for the specified bank. |
int[] | getData() Returns the default (first) int data array in DataBuffer . |
int | getNumBanks() Returns the number of banks in this DataBuffer. |
int | getOffset() Returns the offset of the default bank in array elements. |