Removed unused function

This commit is contained in:
wiredfool 2014-06-30 14:12:30 -07:00
parent bd9c555905
commit 50bbb5e0c5

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)
{