All files / qoi / _common.ts

100.00% Branches 2/2
100.00% Lines 10/10
1
2
3
4
5
6
7
8
9
10
11
x4
x4
x4
 
x72
x72
x72
x72
x72
x72
x72









export function calcIndex(
  pixel: Uint8Array<ArrayBuffer>,
  isRGB: boolean,
): number {
  return (
    pixel[0] * 3 +
    pixel[1] * 5 +
    pixel[2] * 7 +
    (isRGB ? 255 * 11 : pixel[3] * 11)
  ) % 64;
}