add comment

This commit is contained in:
artemp 2014-12-04 10:31:56 +01:00
parent cdaca0ba11
commit 3b3e255f5e

View file

@ -154,7 +154,7 @@ void raster_colorizer::colorize(image_data_32 & out, image_data_16 const& in, bo
std::int16_t value = in_data[i];
if (nodata && (std::fabs(value - *nodata) < epsilon_))
{
out_data[i] = 0;
out_data[i] = 0; // rgba(0,0,0,0)
}
else
{