Lines Matching refs:RGB
28 GifByteType RGB[3]; member
82 ColorArrayEntries[i].RGB[0] = i >> (2 * BITS_PER_PRIM_COLOR); in GifQuantizeBuffer()
83 ColorArrayEntries[i].RGB[1] = (i >> BITS_PER_PRIM_COLOR) & in GifQuantizeBuffer()
85 ColorArrayEntries[i].RGB[2] = i & MAX_PRIM_COLOR; in GifQuantizeBuffer()
147 Red += QuantizedColor->RGB[0]; in GifQuantizeBuffer()
148 Green += QuantizedColor->RGB[1]; in GifQuantizeBuffer()
149 Blue += QuantizedColor->RGB[2]; in GifQuantizeBuffer()
274 MaxColor = QuantizedColor->RGB[SortRGBAxis]; /* Max. of first half */ in SubdivColorMap()
276 MinColor = QuantizedColor->Pnext->RGB[SortRGBAxis]; /* of second */ in SubdivColorMap()
320 int hash1 = entry1->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn()
321 + entry1->RGB[(SortRGBAxis+1) % 3] * 256 in SortCmpRtn()
322 + entry1->RGB[(SortRGBAxis+2) % 3]; in SortCmpRtn()
323 int hash2 = entry2->RGB[SortRGBAxis] * 256 * 256 in SortCmpRtn()
324 + entry2->RGB[(SortRGBAxis+1) % 3] * 256 in SortCmpRtn()
325 + entry2->RGB[(SortRGBAxis+2) % 3]; in SortCmpRtn()