Home | History | Annotate | Download | only in gl

Lines Matching refs:rowBytes

472                                    size_t rowBytes) {
491 config, buffer, rowBytes)) {
505 size_t* rowBytes) {
506 if (!*rowBytes) {
507 *rowBytes = *width * bpp;
517 (subRect.fTop - *top) * *rowBytes + (subRect.fLeft - *left) * bpp);
541 size_t rowBytes) {
546 &width, &height, &data, &rowBytes)) {
608 if (rowBytes != trimRowBytes) {
609 GrGLint rowLength = static_cast<GrGLint>(rowBytes / bpp);
614 if (trimRowBytes != rowBytes || swFlipY) {
619 src += (height - 1) * rowBytes;
625 src -= rowBytes;
627 src += rowBytes;
877 size_t rowBytes) {
969 desc.fConfig, srcData, rowBytes)) {
1370 size_t rowBytes) const {
1381 // If we have to do memcpy to handle non-trim rowBytes then we
1386 // If we have to do memcpys to handle rowBytes then y-flip is free
1387 // Note the rowBytes might be tight to the passed in data, but if data
1388 // gets clipped in x to the target the rowBytes will no longer be tight.
1390 return 0 == rowBytes ||
1391 GrBytesPerPixel(config) * width == rowBytes;
1402 size_t rowBytes) {
1413 &rowBytes)) {
1444 if (0 == rowBytes) {
1445 rowBytes = tightRowBytes;
1450 // determine if GL can read using the passed rowBytes or if we need
1453 if (rowBytes != tightRowBytes) {
1455 SkASSERT(!(rowBytes % sizeof(GrColor)));
1457 static_cast<GrGLint>(rowBytes / sizeof(GrColor))));
1458 readDstRowBytes = rowBytes;
1483 SkASSERT(rowBytes == readDstRowBytes);
1490 char* bottom = top + (height - 1) * rowBytes;
1495 top += rowBytes;
1496 bottom -= rowBytes;
1500 SkASSERT(readDst != buffer); SkASSERT(rowBytes != tightRowBytes);
1506 dst += (height-1) * rowBytes;
1512 dst += rowBytes;
1514 dst -= rowBytes;