Lines Matching defs:pm
64 SkPixmap pm;
65 if (!fBackbufferSurface->peekPixels(&pm)) {
68 int bitsPerPixel = pm.info().bytesPerPixel() * 8;
71 image.width = pm.width();
72 image.height = pm.height();
74 image.data = (char*) pm.addr();
80 image.bytes_per_line = pm.rowBytes() - pm.width() * pm.info().bytesPerPixel();
85 XPutImage(fDisplay, fWindow, fGC, &image, 0, 0, 0, 0, pm.width(), pm.height());