HomeSort by relevance Sort by last modified time
    Searched refs:dstPI (Results 1 - 3 of 3) sorted by null

  /external/skia/src/core/
SkConfig8888.cpp 193 SkDstPixelInfo dstPI;
194 dstPI.fColorType = dstInfo.colorType();
195 dstPI.fAlphaType = dstInfo.alphaType();
196 dstPI.fPixels = dstPixels;
197 dstPI.fRowBytes = dstRB;
205 return srcPI.convertPixelsTo(&dstPI, width, height);
  /external/skia/src/gpu/
GrContext.cpp     [all...]
SkGr.cpp 55 SkDstPixelInfo dstPI;
56 dstPI.fColorType = kRGBA_8888_SkColorType;
57 dstPI.fAlphaType = kPremul_SkAlphaType;
58 dstPI.fPixels = buffer;
59 dstPI.fRowBytes = count * sizeof(SkPMColor);
67 srcPI.convertPixelsTo(&dstPI, count, 1);

Completed in 197 milliseconds