Remove RGBE compressor. Implement as a color transform.

This commit is contained in:
castano
2011-09-28 18:44:18 +00:00
parent 2e96567459
commit e15aa7a9bf
9 changed files with 254 additions and 148 deletions

View File

@ -956,7 +956,7 @@ FloatImage * FloatImage::resize(const Filter & filter, uint w, uint h, uint d, W
void FloatImage::convolve(const Kernel2 & k, uint c, WrapMode wm)
{
AutoPtr<FloatImage> tmpImage = clone();
AutoPtr<FloatImage> tmpImage(clone());
uint w = m_width;
uint h = m_height;