Home | History | Annotate | Download | only in text

Lines Matching refs:height

96                  int height,
99 for (int i = 0; i < height; ++i) {
115 bool GrFontScaler::getPackedGlyphImage(const SkGlyph& glyph, int width, int height, int dstRB,
118 SkASSERT(glyph.fHeight == height);
129 for (int y = 0; y < height; y++) {
146 expand_bits(bytes, bits, width, height, dstRB, srcRB);
151 expand_bits(rgb565, bits, width, height, dstRB, srcRB);
158 memcpy(dst, src, dstRB * height);
161 for (int y = 0; y < height; y++) {
170 bool GrFontScaler::getPackedGlyphDFImage(const SkGlyph& glyph, int width, int height, void* dst) {
172 SkASSERT(glyph.fHeight + 2*SK_DistanceFieldPad == height);