Merge pull request #751 from wiredfool/copy3

Removed unused function
This commit is contained in:
Alex Clark ☺ 2014-06-30 17:29:45 -04:00
commit 3af50033f9

View File

@ -863,13 +863,6 @@ copy2(UINT8* out, const UINT8* in, int pixels)
memcpy(out, in, pixels*2);
}
static void
copy3(UINT8* out, const UINT8* in, int pixels)
{
/* LAB triples, 24bit */
memcpy(out, in, 3 * pixels);
}
static void
copy4(UINT8* out, const UINT8* in, int pixels)
{