Inheritance diagram for InProcBufferTxManager::

Public Methods | |
| InProcBufferTxManager () | |
| void | transferData (HxCorba.RgbSourceOperations src, int[] dest, int offset) | 
| Transfer pixels provided by src to dest, start filling the array at position offset. More... | |
That is, the InProcBufferTxManager calls the native C++ function createInProcRgbBuffer and turns the result in an RgbBuffer. In this way the transfer manager can call the native C++ function doTransfer to put the RGB data directly into the Java image buffer (dest).
      
  | 
  
| 
 
 
 00024 {
00025     _bufferIOR = createInProcRgbBuffer();
00026     org.omg.CORBA.Object obj = CorbaMediator.instance().string_to_object(_bufferIOR);
00027     _buffer = HxCorba.RgbBufferHelper.narrow(obj);
00028 }
 | 
  
      
  | 
  ||||||||||||||||
| 
 Transfer pixels provided by src to dest, start filling the array at position offset. 
 Reimplemented from RgbTransferManager. 
 00031 {
00032     doTransfer(_buffer, _bufferIOR, src, dest, offset);
00033 }
 | 
  
1.2.12 written by Dimitri van Heesch,
 © 1997-2001