Lines Matching refs:rowBytes
32 size_t rowBytes = info.minRowBytes() - 1;
33 size_t size = info.computeByteSize(rowBytes);
36 SkMallocPixelRef::MakeWithData(info, rowBytes, data));
41 size_t rowBytes = info.minRowBytes() + info.bytesPerPixel();
42 size_t size = info.computeByteSize(rowBytes) - 1;
45 SkMallocPixelRef::MakeWithData(info, rowBytes, data));
49 size_t rowBytes = info.minRowBytes() + info.bytesPerPixel();
50 size_t size = info.computeByteSize(rowBytes) + 9;
53 auto pr = sk_make_sp<SkPixelRef>(info.width(), info.height(), memory.get(), rowBytes);
59 SkMallocPixelRef::MakeAllocate(info, rowBytes));
66 SkMakePixelRefWithProc(info.width(), info.height(), rowBytes, addr, delete_uint8_proc,
75 SkMakePixelRefWithProc(info.width(), info.height(), rowBytes, memory.get(),
88 SkMakePixelRefWithProc(info.width(), info.height(), rowBytes, addr, delete_uint8_proc,
96 sk_sp<SkPixelRef> pr = SkMallocPixelRef::MakeWithData(info, rowBytes, data);