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

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

Definition at line 21 of file Sort.h.

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

00022 {
00023     if (dst == 0)
00024         dst = ArrayClone<ArrayT>(src);
00025     Pattern::PatSet(dst, src);
00026     int length = dst->W() * dst->H();
00027     Util::QuickSort(dst->CPB(), 0, length-1);
00028 }

Here is the call graph for this function:


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