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_P1Loop ( SrcStorT *  sPtr,
NgbT &  ngb,
int  ngbWidth,
int  ngbHeight,
int  srcIncX,
int  srcIncY,
SrcArithT   
) [inline]

Pix : phase 1, loop.

Definition at line 70 of file FuncNgbOp2d.h.

References PtrRead().

Referenced by FuncNgbOp2d_Row().

00072 {
00073     for (int j=0 ; j<ngbHeight ; j++)
00074     {
00075         for (int i=0 ; i<ngbWidth ; i++)
00076         {
00077             ngb.NextEl(i, j, PtrRead(sPtr, SrcArithT()));
00078             sPtr += srcIncX;
00079         }
00080         sPtr += srcIncY;
00081     }
00082 }

Here is the call graph for this function:


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