Home
last modified time | relevance | path

Searched refs:PixIndex (Results 1 – 2 of 2) sorted by relevance

/GUIX-v6.2.1/guix_studio/
Dimage_reader.h163 static Pixel ReadPixelMono(image_reader *reader, int PixIndex);
164 static Pixel ReadPixelMonoTransparent(image_reader *reader, int PixIndex);
165 static Pixel ReadPixel4bppgrayscale(image_reader *reader, int PixIndex);
166 static Pixel ReadPixel4bppgrayscale_transparent(image_reader *reader, int PixIndex);
167 static Pixel ReadPixel8bppPalette(image_reader *reader, int PixIndex);
168 static Pixel ReadPixel8bppAlpha(image_reader *reader, int PixIndex);
169 static Pixel ReadPixel8Bit_332_RGB(image_reader *reader, int PixIndex);
170 static Pixel ReadPixel8Bit_332_Alpha(image_reader *reader, int PixIndex);
171 static Pixel ReadPixel16Bit_555(image_reader *reader, int PixIndex);
172 static Pixel ReadPixel16Bit_555_BGR(image_reader *reader, int PixIndex);
[all …]
Dimage_reader.cpp851 int PixIndex; in ColorSpaceConvertRow() local
853 for (PixIndex = 0; PixIndex < Width; PixIndex++) in ColorSpaceConvertRow()
855 mpReadInputPixel(this, PixIndex, &val); in ColorSpaceConvertRow()
1286 int PixIndex = 0; in RleEncodeRow() local
1292 while(PixIndex < Width) in RleEncodeRow()
1294 count = CountDuplicates(PixIndex, Width); in RleEncodeRow()
1309 val = mpReadOutputPixel(this, PixIndex); in RleEncodeRow()
1311 PixIndex += count; in RleEncodeRow()
1323 val = mpReadOutputPixel(this, PixIndex); in RleEncodeRow()
1325 PixIndex++; in RleEncodeRow()
[all …]