Inheritance diagram for NoBufferTxManager::
Public Methods | |
void | transferData (HxCorba.RgbSourceOperations src, int[] dest, int offset) |
Transfer pixels provided by src to dest, start filling the array at position offset. More... |
Instead, it just asks the RgbSource for an array of RGB values and copies that. It is used, for instance, to get pixels from a local Java image.
|
Transfer pixels provided by src to dest, start filling the array at position offset.
Reimplemented from RgbTransferManager.
00022 { 00023 int[] pixels = src.getRgb(); 00024 System.arraycopy(pixels, 0, dest, offset, pixels.length); 00025 } |