Lines Matching refs:resultInfo
18 const SkImageInfo& resultInfo,
27 float sx = (float)resultInfo.width() / srcW;
28 float sy = (float)resultInfo.height() / srcH;
94 int nextW = resultInfo.width();
95 int nextH = resultInfo.height();
97 nextW = resultInfo.width() << (-stepsX - 1);
106 nextH = resultInfo.height() << (-stepsY - 1);
117 ii = resultInfo;
135 size_t rowBytes = resultInfo.minRowBytes();
136 std::unique_ptr<char[]> data(new char[resultInfo.height() * rowBytes]);
137 SkPixmap pm(resultInfo, data.get(), rowBytes);