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

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

Pix : phase 2, loop.

Definition at line 88 of file FuncNgbOp2d.h.

References PtrRead().

Referenced by FuncNgbOp2d_Row().

00090 {
00091     for (int j=0 ; j<ngbHeight ; j++)
00092     {
00093         for (int i=0 ; i<ngbWidth ; i++)
00094         {
00095             ngb.NextEl2(i, j, PtrRead(sPtr, SrcArithT()));
00096             sPtr += srcIncX;
00097         }
00098         sPtr += srcIncY;
00099     }
00100 }

Here is the call graph for this function:


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