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

template<class ArrayT>
void Impala::Core::Array::Reverse ( ArrayT *&  dst,
const ArrayT *  src 
)

Definition at line 16 of file Reverse.h.

References Impala::Core::Array::Pattern::PatSet(), and Impala::Util::Reverse().

00017 {
00018     if (dst == 0)
00019         dst = ArrayClone<ArrayT>(src);
00020     Pattern::PatSet(dst, src);
00021     int length = dst->W() * dst->H();
00022     Util::Reverse(dst->CPB(), 0, length-1);
00023 }

Here is the call graph for this function:


Generated on Fri Mar 19 10:58:32 2010 for ImpalaSrc by  doxygen 1.5.1