Home || Architecture || Video Search || Visual Search || Scripts || Applications || Important Messages || OGL || Src

template<class SrcStorT, class SrcArithT, class ExtraStorT, class ExtraArithT, class NgbT>
void Impala::Core::Array::Pattern::FuncNgbOp2dExtra_Pix_P2Loop ( SrcStorT *  sPtr,
ExtraStorT *  ePtr,
NgbT &  ngb,
int  ngbWidth,
int  ngbHeight,
int  srcIncX,
int  srcIncY,
SrcArithT  ,
int  extraIncX,
int  extraIncY,
ExtraArithT   
) [inline]

Pix : phase 2, loop.

Definition at line 98 of file FuncNgbOp2dExtra.h.

References PtrRead().

Referenced by FuncNgbOp2dExtra_Row().

00102 {
00103     for (int j=0 ; j<ngbHeight ; j++)
00104     {
00105         for (int i=0 ; i<ngbWidth ; i++)
00106         {
00107             ngb.NextEl2(i, j, PtrRead(sPtr, SrcArithT()),
00108                         PtrRead(ePtr, ExtraArithT()));
00109             sPtr += srcIncX;
00110             ePtr += extraIncX;
00111         }
00112         sPtr += srcIncY;
00113         ePtr += extraIncY;
00114     }
00115 }

Here is the call graph for this function:


Generated on Fri Mar 19 11:01:31 2010 for ImpalaSrc by  doxygen 1.5.1