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

Mul.h

Go to the documentation of this file.
00001 #ifndef Impala_Core_Array_Mul_h
00002 #define Impala_Core_Array_Mul_h
00003 
00004 #include "Core/Array/Pattern/PatBinaryPixOp.h"
00005 #include "Core/Array/Trait/BpoMul.h"
00006 
00007 namespace Impala
00008 {
00009 namespace Core
00010 {
00011 namespace Array
00012 {
00013 
00014 
00015 template<class DstArrayT, class Src1ArrayT, class Src2ArrayT>
00016 inline void
00017 Mul(DstArrayT*& dst, Src1ArrayT* src1, Src2ArrayT* src2)
00018 {
00019     Trait::BpoMul<DstArrayT, Src1ArrayT, Src2ArrayT> bpo;
00020     Pattern::PatBinaryPixOp(dst, src1, src2, bpo);
00021 }
00022 
00023 } // namespace Array
00024 } // namespace Core
00025 } // namespace Impala
00026 
00027 #endif

Generated on Fri Mar 19 09:30:49 2010 for ImpalaSrc by  doxygen 1.5.1