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

  /external/skia/src/gpu/vk/
GrVkGpu.cpp 333 size_t trimRowBytes = width * bpp;
369 memcpy(dstRow, srcRow, trimRowBytes);
375 if (trimRowBytes == rowBytes && trimRowBytes == layout.rowPitch) {
376 memcpy(mapPtr, data, trimRowBytes * height);
378 SkRectMemcpy(mapPtr, layout.rowPitch, data, rowBytes, trimRowBytes, height);
385 GrVkTransferBuffer::Create(this, trimRowBytes * height, GrVkBuffer::kCopyRead_Type);
392 char* dstRow = reinterpret_cast<char*>(mapPtr)+(height - 1)*trimRowBytes;
394 memcpy(dstRow, srcRow, trimRowBytes);
396 dstRow -= trimRowBytes;
    [all...]
  /external/skia/src/gpu/gl/
GrGLGpu.cpp     [all...]

Completed in 43 milliseconds