Home | History | Annotate | Download | only in gif

Lines Matching defs:rowBegin

110 void SkGIFLZWContext::outputRow(const unsigned char* rowBegin)
162 m_client->haveDecodedRow(m_frameContext->frameId(), rowBegin,
297 unsigned char* rowBegin = rowBuffer.begin();
298 for (; rowBegin + width <= rowIter; rowBegin += width) {
299 outputRow(rowBegin);
305 if (rowBegin != rowBuffer.begin()) {
307 const size_t bytesToCopy = rowIter - rowBegin;
308 memcpy(&rowBuffer.front(), rowBegin, bytesToCopy);