Home | History | Annotate | Download | only in ports

Lines Matching refs:cgRowBytes

1072 static void rgb_to_a8(const CGRGBPixel* SK_RESTRICT cgPixels, size_t cgRowBytes,
1082 cgPixels = (CGRGBPixel*)((char*)cgPixels + cgRowBytes);
1097 static void rgb_to_lcd16(const CGRGBPixel* SK_RESTRICT cgPixels, size_t cgRowBytes, const SkGlyph& glyph,
1107 cgPixels = (CGRGBPixel*)((char*)cgPixels + cgRowBytes);
1122 static void rgb_to_lcd32(const CGRGBPixel* SK_RESTRICT cgPixels, size_t cgRowBytes, const SkGlyph& glyph,
1131 cgPixels = (CGRGBPixel*)((char*)cgPixels + cgRowBytes);
1147 size_t cgRowBytes;
1148 CGRGBPixel* cgPixels = fOffscreen.getCG(*this, glyph, cgGlyph, &cgRowBytes, generateA8FromLCD);
1175 addr = SkTAddByteOffset(addr, cgRowBytes);
1183 rgb_to_lcd32<true>(cgPixels, cgRowBytes, glyph,
1186 rgb_to_lcd32<false>(cgPixels, cgRowBytes, glyph,
1192 rgb_to_lcd16<true>(cgPixels, cgRowBytes, glyph,
1195 rgb_to_lcd16<false>(cgPixels, cgRowBytes, glyph,
1201 rgb_to_a8<true>(cgPixels, cgRowBytes, glyph, fPreBlend.fG);
1203 rgb_to_a8<false>(cgPixels, cgRowBytes, glyph, fPreBlend.fG);
1212 cgPixels = (CGRGBPixel*)((char*)cgPixels + cgRowBytes);