Searched defs:pCursorCopy (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp2443 uint8_t *pCursorCopy; local
2457 /** @todo Would be more efficient to copy the data straight into pCursorCopy (memcpy below). */
2464 pCursorCopy = (uint8_t *)RTMemAlloc(cbCursorShape);
2465 AssertBreak(pCursorCopy);
2470 memset(pCursorCopy, 0xff, cbAndMask);
2472 memcpy(pCursorCopy + cbAndMask, (pCursor + 1), pCursor->width * pCursor->height * sizeof(uint32_t));
2481 pCursorCopy);
2493 pSVGAState->Cursor.pData = pCursorCopy;

Completed in 184 milliseconds