Home | History | Annotate | Download | only in vk

Lines Matching defs:bpp

453     int bpp = GrColorTypeBytesPerPixel(bufferColorType);
455 rowBytes = bpp * width;
462 region.bufferRowLength = (uint32_t)(rowBytes/bpp);
556 int bpp = GrColorTypeBytesPerPixel(dataColorType);
557 size_t trimRowBytes = width * bpp;
581 VkDeviceSize offset = alloc.fOffset + texTop*layout.rowPitch + left*bpp;
641 int bpp = GrColorTypeBytesPerPixel(dataColorType);
658 size_t combinedBufferSize = width * bpp * height;
667 SkASSERT((bpp & (bpp - 1)) == 0);
668 const size_t alignmentMask = 0x3 | (bpp - 1);
674 const size_t trimmedSize = currentWidth * bpp * currentHeight;
706 const size_t trimRowBytes = currentWidth * bpp;
1290 size_t bpp = GrBytesPerPixel(config);
1291 size_t rowCopyBytes = bpp * w;
1315 size_t combinedBufferSize = w * bpp * h;
1321 SkASSERT((bpp & (bpp - 1)) == 0);
1322 const size_t alignmentMask = 0x3 | (bpp - 1);
1327 const size_t trimmedSize = currentWidth * bpp * currentHeight;
1369 size_t currentRowBytes = bpp * currentWidth;
1962 int bpp = GrColorTypeBytesPerPixel(dstColorType);
1963 size_t tightRowBytes = bpp * width;
1986 size_t transBufferRowBytes = bpp * region.imageExtent.width;
1987 size_t imageRows = bpp * region.imageExtent.height;
2023 mappedMemory = (char*)mappedMemory + transBufferRowBytes * skipRows + bpp * left;