Lines Matching defs:Cursor

125     } Cursor;
187 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.fActive),
188 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.xHotspot),
189 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.yHotspot),
190 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.width),
191 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.height),
192 SSMFIELD_ENTRY( VMSVGASTATE, Cursor.cbData),
193 SSMFIELD_ENTRY_IGN_HCPTR( VMSVGASTATE, Cursor.pData),
2467 Log2(("Cursor data:\n%.*Rhxd\n", pCursor->width * pCursor->height * sizeof(uint32_t), pCursor+1));
2484 if (pSVGAState->Cursor.fActive)
2485 RTMemFree(pSVGAState->Cursor.pData);
2487 pSVGAState->Cursor.fActive = true;
2488 pSVGAState->Cursor.xHotspot = pCursor->hotspotX;
2489 pSVGAState->Cursor.yHotspot = pCursor->hotspotY;
2490 pSVGAState->Cursor.width = pCursor->width;
2491 pSVGAState->Cursor.height = pCursor->height;
2492 pSVGAState->Cursor.cbData = cbCursorShape;
2493 pSVGAState->Cursor.pData = pCursorCopy;
3578 if (pSVGAState->Cursor.fActive)
3580 pSVGAState->Cursor.pData = RTMemAlloc(pSVGAState->Cursor.cbData);
3581 AssertReturn(pSVGAState->Cursor.pData, VERR_NO_MEMORY);
3583 rc = SSMR3GetMem(pSSM, pSVGAState->Cursor.pData, pSVGAState->Cursor.cbData);
3649 if (pSVGAState->Cursor.fActive)
3656 pSVGAState->Cursor.xHotspot,
3657 pSVGAState->Cursor.yHotspot,
3658 pSVGAState->Cursor.width,
3659 pSVGAState->Cursor.height,
3660 pSVGAState->Cursor.pData);
3688 if (pSVGAState->Cursor.fActive)
3690 rc = SSMR3PutMem(pSSM, pSVGAState->Cursor.pData, pSVGAState->Cursor.cbData);
3817 if (pSVGAState->Cursor.fActive)
3818 RTMemFree(pSVGAState->Cursor.pData);