Home
last modified time | relevance | path

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

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
DImage9.cpp119 D3DLOCKED_RECT destLock = {0}; in copyLockableSurfaces() local
122 dest->LockRect(&destLock, NULL, 0); in copyLockableSurfaces()
124 if (sourceLock.pBits && destLock.pBits) in copyLockableSurfaces()
131 ASSERT(bytes <= sourceLock.Pitch && bytes <= destLock.Pitch); in copyLockableSurfaces()
135 …memcpy((char*)destLock.pBits + destLock.Pitch * i, (char*)sourceLock.pBits + sourceLock.Pitch * i,… in copyLockableSurfaces()
544 D3DLOCKED_RECT destLock = {0}; in copy() local
545 result = lock(&destLock, &destRect); in copy()
556 if (destLock.pBits && sourceLock.pBits) in copy()
559 unsigned char *dest = (unsigned char*)destLock.pBits; in copy()
574 dest += destLock.Pitch; in copy()
[all …]