Add Image template instantiation for IPixel

This commit is contained in:
Pavel Krajcevski 2013-10-10 11:35:28 -04:00
parent ad5f012a4c
commit 127fd7b365

View File

@ -51,6 +51,7 @@
#include "Color.h"
#include "Pixel.h"
#include "IPixel.h"
template <typename T>
static inline T sad( const T &a, const T &b ) {
@ -289,6 +290,7 @@ void Image<PixelType>::SetImageData(uint32 width, uint32 height, PixelType *data
}
template class Image<Pixel>;
template class Image<IPixel>;
template class Image<Color>;
} // namespace FasTC