Lines Matching refs:sourceLock
462 D3DLOCKED_RECT sourceLock; in CopyRects() local
465 sourceSurface->LockRect(&sourceLock, &sRect, D3DLOCK_READONLY); in CopyRects()
477 memcpy(destLock.pBits, sourceLock.pBits, rWidth * bpp / 8); in CopyRects()
481 memcpy(destLock.pBits, sourceLock.pBits, rWidth * bpp / 8); in CopyRects()
484 (char*&)sourceLock.pBits += sourceLock.Pitch; in CopyRects()
4201 D3DLOCKED_RECT sourceLock; in updateSurface() local
4204 sourceSurface->LockRect(&sourceLock, &sRect, D3DLOCK_READONLY); in updateSurface()
4234 memcpy(destinationLock.pBits, sourceLock.pBits, bytes); in updateSurface()
4236 (byte*&)sourceLock.pBits += sourceLock.Pitch; in updateSurface()
4888 D3DLOCKED_BOX sourceLock; in updateVolume() local
4891 sourceVolume->LockBox(&sourceLock, 0, 0); in updateVolume()
4894 if(sourceLock.RowPitch != destinationLock.RowPitch || in updateVolume()
4895 sourceLock.SlicePitch != destinationLock.SlicePitch) in updateVolume()
4900 memcpy(destinationLock.pBits, sourceLock.pBits, sourceLock.SlicePitch * sourceDescription.Depth); in updateVolume()