Searched refs:lRect (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp439 D3DLOCKED_RECT lRect; local
441 res = pTmpSurface->LockRect(&lRect, &dstRect, D3DLOCK_NOSYSLOCK);
444 pixel = *(jint*)lRect.pBits;
446 pixel = *(unsigned short*)lRect.pBits;
493 D3DLOCKED_RECT lRect; local
498 res = pTmpSurface->LockRect(&lRect, &srcRect, D3DLOCK_NOSYSLOCK);
501 *(jint*)lRect.pBits = pixel;
503 *(unsigned short*)lRect.pBits = (unsigned short)pixel;

Completed in 31 milliseconds