Lines Matching refs:PixIndex
851 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()
1330 if (RawCount == 128 || PixIndex == Width) in RleEncodeRow()
2813 Pixel image_reader::ReadPixelMono(image_reader *reader, int PixIndex) in ReadPixelMono() argument
2819 color = *(pLine + (PixIndex >> 3)); in ReadPixelMono()
2821 if (color & (0x80 >> (PixIndex & 0x07))) in ReadPixelMono()
2835 Pixel image_reader::ReadPixelMonoTransparent(image_reader *reader, int PixIndex) in ReadPixelMonoTransparent() argument
2841 color = *(pLine + (PixIndex >> 2)); in ReadPixelMonoTransparent()
2844 if (color & (0x40 >> ((PixIndex & 0x03) << 1))) in ReadPixelMonoTransparent()
2846 if (color & (0x80 >> ((PixIndex & 0x03) << 1))) in ReadPixelMonoTransparent()
2867 Pixel image_reader::ReadPixel4bppgrayscale(image_reader *reader, int PixIndex) in ReadPixel4bppgrayscale() argument
2873 color = *(pLine + (PixIndex >> 1)); in ReadPixel4bppgrayscale()
2874 if (PixIndex & 1) in ReadPixel4bppgrayscale()
2892 Pixel image_reader::ReadPixel4bppgrayscale_transparent(image_reader *reader, int PixIndex) in ReadPixel4bppgrayscale_transparent() argument
2897 INT AuxIndex = PixIndex >> 3; in ReadPixel4bppgrayscale_transparent()
2898 INT ColorIndex = PixIndex >> 1; in ReadPixel4bppgrayscale_transparent()
2902 TransMask = (GX_UBYTE)(TransMask >> (7 - (PixIndex & 0x07))); in ReadPixel4bppgrayscale_transparent()
2910 if (PixIndex & 1) in ReadPixel4bppgrayscale_transparent()
2928 Pixel image_reader::ReadPixel8bppPalette(image_reader *reader, int PixIndex) in ReadPixel8bppPalette() argument
2937 pLine += PixIndex; in ReadPixel8bppPalette()
2959 Pixel image_reader::ReadPixel8bppAlpha(image_reader *reader, int PixIndex) in ReadPixel8bppAlpha() argument
2967 val.Alpha = *(pLine + PixIndex); in ReadPixel8bppAlpha()
2972 Pixel image_reader::ReadPixel8Bit_332_RGB(image_reader *reader, int PixIndex) in ReadPixel8Bit_332_RGB() argument
2979 pGetColor += PixIndex; in ReadPixel8Bit_332_RGB()
2990 Pixel image_reader::ReadPixel8Bit_332_Alpha(image_reader *reader, int PixIndex) in ReadPixel8Bit_332_Alpha() argument
2998 pGetColor += PixIndex; in ReadPixel8Bit_332_Alpha()
3006 pAux += PixIndex; in ReadPixel8Bit_332_Alpha()
3012 Pixel image_reader::ReadPixel16Bit_555(image_reader *reader, int PixIndex) in ReadPixel16Bit_555() argument
3020 pGetColor += PixIndex; in ReadPixel16Bit_555()
3031 Pixel image_reader::ReadPixel16Bit_555_BGR(image_reader *reader, int PixIndex) in ReadPixel16Bit_555_BGR() argument
3039 pGetColor += PixIndex; in ReadPixel16Bit_555_BGR()
3050 Pixel image_reader::ReadPixel16Bit_555_Alpha(image_reader *reader, int PixIndex) in ReadPixel16Bit_555_Alpha() argument
3058 pGetColor += PixIndex; in ReadPixel16Bit_555_Alpha()
3066 pAux += PixIndex; in ReadPixel16Bit_555_Alpha()
3072 Pixel image_reader::ReadPixel16Bit_565_RGB(image_reader *reader, int PixIndex) in ReadPixel16Bit_565_RGB() argument
3079 pGetColor += PixIndex; in ReadPixel16Bit_565_RGB()
3091 Pixel image_reader::ReadPixel16Bit_565_Alpha(image_reader *reader, int PixIndex) in ReadPixel16Bit_565_Alpha() argument
3099 pGetColor += PixIndex; in ReadPixel16Bit_565_Alpha()
3107 pAux += PixIndex; in ReadPixel16Bit_565_Alpha()
3114 Pixel image_reader::ReadPixel16Bit_565_BGR(image_reader *reader, int PixIndex) in ReadPixel16Bit_565_BGR() argument
3122 pGetColor += PixIndex; in ReadPixel16Bit_565_BGR()
3133 Pixel image_reader::ReadPixel16Bit_565_BGR_Alpha(image_reader *reader, int PixIndex) in ReadPixel16Bit_565_BGR_Alpha() argument
3141 pGetColor += PixIndex; in ReadPixel16Bit_565_BGR_Alpha()
3149 pAux += PixIndex; in ReadPixel16Bit_565_BGR_Alpha()
3155 Pixel image_reader::ReadPixel16Bit_4444_ARGB(image_reader *reader, int PixIndex) in ReadPixel16Bit_4444_ARGB() argument
3163 pGetColor += PixIndex; in ReadPixel16Bit_4444_ARGB()
3175 Pixel image_reader::ReadPixel16Bit_4444_BGRA(image_reader *reader, int PixIndex) in ReadPixel16Bit_4444_BGRA() argument
3183 pGetColor += PixIndex; in ReadPixel16Bit_4444_BGRA()
3195 Pixel image_reader::ReadPixel24Bit_BGRPacked(image_reader *reader, int PixIndex) in ReadPixel24Bit_BGRPacked() argument
3200 pLine += PixIndex * 3; in ReadPixel24Bit_BGRPacked()
3209 Pixel image_reader::ReadPixel24Bit_RGBPacked(image_reader *reader, int PixIndex) in ReadPixel24Bit_RGBPacked() argument
3214 pLine += PixIndex * 3; in ReadPixel24Bit_RGBPacked()
3223 Pixel image_reader::ReadPixel32Bit_ARGB(image_reader *reader, int PixIndex) in ReadPixel32Bit_ARGB() argument
3228 pLine += PixIndex * 4; in ReadPixel32Bit_ARGB()
3237 Pixel image_reader::ReadPixel32Bit_BGRA(image_reader *reader, int PixIndex) in ReadPixel32Bit_BGRA() argument
3242 pLine += PixIndex * 4; in ReadPixel32Bit_BGRA()
3253 void image_reader::WriteTransparentPixel_16(UCHAR *pPut, int PixIndex) in WriteTransparentPixel_16() argument
3256 pWrite += PixIndex; in WriteTransparentPixel_16()
3261 void image_reader::WriteTransparentPixel_24_BGR(UCHAR *pPut, int PixIndex) in WriteTransparentPixel_24_BGR() argument
3263 pPut += PixIndex * 3; in WriteTransparentPixel_24_BGR()
3270 void image_reader::WriteTransparentPixel_24_RGB(UCHAR *pPut, int PixIndex) in WriteTransparentPixel_24_RGB() argument
3272 pPut += PixIndex * 3; in WriteTransparentPixel_24_RGB()
3279 void image_reader::WriteTransparentPixel_32BGRA(UCHAR *pPut, int PixIndex) in WriteTransparentPixel_32BGRA() argument
3282 pData += PixIndex; in WriteTransparentPixel_32BGRA()
3287 void image_reader::WriteTransparentPixel_32ARGB(UCHAR *pPut, int PixIndex) in WriteTransparentPixel_32ARGB() argument
3290 pData += PixIndex; in WriteTransparentPixel_32ARGB()