Lines Matching refs:Pitch

889     conv->convert(lock_src.pBits, lock_dst.pBits, lock_src.Pitch, lock_dst.Pitch,
1225 dbuf = (BYTE*)dlock.pBits+(xdst.top*dlock.Pitch)+(xdst.left*bpp);
1253 dlock.Pitch, DDBltFx->u5.dwFillColor);
1267 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,0);
1272 ret = _Blt_ColorFill(dbuf,dstwidth,dstheight,bpp,dlock.Pitch,~0);
1294 sbase = (BYTE*)slock.pBits+(xsrc.top*slock.Pitch)+xsrc.left*bpp;
1317 sbuf += slock.Pitch;
1318 dbuf += dlock.Pitch;
1323 sbuf += (slock.Pitch*dstheight);
1324 dbuf += (dlock.Pitch*dstheight);
1327 sbuf -= slock.Pitch;
1328 dbuf -= dlock.Pitch;
1337 sbuf += slock.Pitch;
1338 dbuf += dlock.Pitch;
1344 sbuf = sbase + (sy >> 16) * slock.Pitch;
1346 dbuf += dlock.Pitch;
1356 sbuf = sbase + (sy >> 16) * slock.Pitch;
1363 memcpy(dbuf, dbuf - dlock.Pitch, width);
1403 dbuf += dlock.Pitch;
1410 LONG dstyinc = dlock.Pitch, dstxinc = bpp;
1458 dBottomLeft = dTopLeft+((dstheight-1)*dlock.Pitch);
1539 s = (const type*)(sbase + (sy >> 16) * slock.Pitch); \
1563 sbuf = sbase + (sy >> 16) * slock.Pitch;
1718 pitch = dlock.Pitch;
1719 slock.Pitch = dlock.Pitch;
1763 dbuf += dlock.Pitch;
1764 sbuf += slock.Pitch;
1812 s = (const type *)((const BYTE *)s + slock.Pitch); \
1813 d = (type *)((BYTE *)d + dlock.Pitch); \
1841 s += slock.Pitch;
1842 d += dlock.Pitch;
1863 sbuf += (h - 1) * slock.Pitch;
1864 dbuf += (h - 1) * dlock.Pitch;
1865 sbufpitch = -slock.Pitch;
1866 dbufpitch = -dlock.Pitch;
1870 sbufpitch = slock.Pitch;
1871 dbufpitch = dlock.Pitch;
1910 pLockedRect->Pitch = IWineD3DSurface_GetPitch(iface);
1936 + ((pRect->top / format_desc->block_height) * pLockedRect->Pitch)
1942 (pLockedRect->Pitch * pRect->top) +
1952 TRACE("returning memory@%p, pitch(%d)\n", pLockedRect->pBits, pLockedRect->Pitch);