shithub: qk1

ref: 6d97f6b4494d46084ca64c8bb79deb8d67ea4d6f
dir: /pal.c/

View raw version
#include <u.h>

void
pal2xrgb(int n, s32int *pal, u8int *s, u32int *d)
{
	while(n-- > 0)
		*d++ = pal[*s++];
}