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

Pix : phase 1, loop.

Definition at line 74 of file FuncNgbOp2dExtra.h.

References PtrRead().

Referenced by FuncNgbOp2dExtra_Row().

00078 {
00079     for (int j=0 ; j<ngbHeight ; j++)
00080     {
00081         for (int i=0 ; i<ngbWidth ; i++)
00082         {
00083             ngb.NextEl(i, j, PtrRead(sPtr, SrcArithT()),
00084                        PtrRead(ePtr, ExtraArithT()));
00085             sPtr += srcIncX;
00086             ePtr += extraIncX;
00087         }
00088         sPtr += srcIncY;
00089         ePtr += extraIncY;
00090     }
00091 }

Here is the call graph for this function:


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