Home
last modified time | relevance | path

Searched refs:destLock (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/libANGLE/renderer/d3d/d3d9/
DImage9.cpp116 D3DLOCKED_RECT destLock = {}; in CopyLockableSurfaces() local
123 result = dest->LockRect(&destLock, nullptr, 0); in CopyLockableSurfaces()
130 ASSERT(sourceLock.pBits && destLock.pBits); in CopyLockableSurfaces()
140 bytes <= static_cast<unsigned int>(destLock.Pitch)); in CopyLockableSurfaces()
144 memcpy((char *)destLock.pBits + destLock.Pitch * i, in CopyLockableSurfaces()
595 D3DLOCKED_RECT destLock = {}; in copyFromRTInternal() local
596 angle::Result result = lock(context9, &destLock, destRect); in copyFromRTInternal()
603 ASSERT(destLock.pBits && sourceLock.pBits); in copyFromRTInternal()
606 unsigned char *destPixels = (unsigned char *)destLock.pBits; in copyFromRTInternal()
620 destPixels += destLock.Pitch; in copyFromRTInternal()
[all …]