Definition at line 40 of file RgbOglImage.h. References Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CH(), Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CPB(), and Impala::Core::Array::Array2dTem< StorT, elemSize, ArithT >::CW(). Referenced by OglImage(). 00041 { 00042 // Obtain our 'im' stored as 'imageHandle' 00043 Array2dVec3UInt8* ar = (Array2dVec3UInt8 *) oglIm->imageHandle; 00044 00045 // Set oglIm dimensions to our 'im' dimensions 00046 oglIm->w = ar->CW(); 00047 oglIm->h = ar->CH(); 00048 oglIm->changed = 0; 00049 00050 return (void *) ar->CPB(0, 0); // Pointer to the image pixels 00051 }
Here is the call graph for this function:
|