Home | History | Annotate | Download | only in gpu

Lines Matching defs:bpp

255                          int bpp) {
261 int dstXLimit = dstW*bpp;
264 void* srcRow = (uint8_t*)src + (y>>16)*srcW*bpp;
265 void* dstRow = (uint8_t*)dst + j*dstW*bpp;
266 for (int i = 0; i < dstXLimit; i += bpp) {
268 (uint8_t*) srcRow + (x>>16)*bpp,
269 bpp);
332 int bpp = GrBytesPerPixel(desc.fConfig);
333 SkAutoSMalloc<128*128*4> stretchedPixels(bpp * rtDesc.fWidth * rtDesc.fHeight);
335 srcData, desc.fWidth, desc.fHeight, bpp);
337 size_t stretchedRowBytes = rtDesc.fWidth * bpp;