Allow FasTC::Image<Color>

This commit is contained in:
Pavel Krajcevski 2013-10-08 18:38:11 -04:00
parent a4a289c177
commit 0add6a5ee9

View file

@ -49,6 +49,7 @@
#include <cassert> #include <cassert>
#include <cmath> #include <cmath>
#include "Color.h"
#include "Pixel.h" #include "Pixel.h"
template <typename T> template <typename T>
@ -288,5 +289,6 @@ void Image<PixelType>::SetImageData(uint32 width, uint32 height, PixelType *data
} }
template class Image<Pixel>; template class Image<Pixel>;
template class Image<Color>;
} // namespace FasTC } // namespace FasTC