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

  /external/skia/include/core/
SkPixmap.h 74 int rowBytesAsPixels() const { return int(fRowBytes >> this->shiftPerPixel()); }
80 int shiftPerPixel() const { return fInfo.shiftPerPixel(); }
SkBitmap.h 101 return fRowBytes >> this->shiftPerPixel();
108 int shiftPerPixel() const { return this->fInfo.shiftPerPixel(); }
SkImageInfo.h 271 int shiftPerPixel() const { return SkColorTypeShiftPerPixel(fColorType); }
  /external/skia/src/core/
SkBlitter_Sprite.cpp 85 const size_t bytesToCopy = width << fSource.shiftPerPixel();
SkDraw.cpp 158 int shiftPerPixel;
161 shiftPerPixel = 2;
164 shiftPerPixel = 1;
167 shiftPerPixel = 0;
177 const int widthBytes = rect.width() << shiftPerPixel;
180 pixels += rect.fTop * rowBytes + (rect.fLeft << shiftPerPixel);
    [all...]
SkRasterPipelineBlitter.cpp 293 switch (fDst.shiftPerPixel()) {

Completed in 154 milliseconds