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

/vbox/src/VBox/Main/include/
H A DMouseImpl.h62 const uint8_t *pu8Shape, uint32_t cbShape);
141 uint32_t cbShape; member in struct:Mouse::__anon16492
/vbox/src/VBox/Main/src-client/
H A DMouseImpl.cpp48 const uint8_t *pu8Shape, uint32_t cbShape);
97 const uint8_t *pu8Shape, uint32_t cbShape)
100 fVisible, fAlpha, hotX, hotY, width, height, cbShape));
113 m.shape.resize(cbShape);
114 if (cbShape)
116 memcpy(&m.shape.front(), pu8Shape, cbShape);
300 mPointerData.cbShape = 0;
310 const uint8_t *pu8Shape, uint32_t cbShape)
316 mPointerData.cbShape = 0;
324 if (cbShape)
93 init(ComObjPtr<Mouse> pMouse, bool fVisible, bool fAlpha, uint32_t hotX, uint32_t hotY, uint32_t width, uint32_t height, const uint8_t *pu8Shape, uint32_t cbShape) argument
307 updateMousePointerShape(bool fVisible, bool fAlpha, uint32_t hotX, uint32_t hotY, uint32_t width, uint32_t height, const uint8_t *pu8Shape, uint32_t cbShape) argument
[all...]
H A DVMMDevInterface.cpp356 uint32_t cbShape = 0; local
359 cbShape = (width + 7) / 8 * height; /* size of the AND mask */
360 cbShape = ((cbShape + 3) & ~3) + width * 4 * height; /* + gap + size of the XOR mask */
362 pConsole->i_onMousePointerShapeChange(fVisible, fAlpha, xHot, yHot, width, height, (uint8_t *)pShape, cbShape);
H A DConsoleImpl.cpp6588 uint32_t cbShape)
6601 pu8Shape, cbShape);
6603 com::SafeArray<BYTE> shape(cbShape);
6605 memcpy(shape.raw(), pu8Shape, cbShape);
6584 i_onMousePointerShapeChange(bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t width, uint32_t height, const uint8_t *pu8Shape, uint32_t cbShape) argument
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VBVA.cpp73 uint32_t cbShape; member in struct:VBVAMOUSESHAPEINFO
590 pMouseShapeInfo->cbShape,
629 static int vbvaMousePointerShape (PVGASTATE pVGAState, VBVACONTEXT *pCtx, const VBVAMOUSEPOINTERSHAPE *pShape, HGSMISIZE cbShape) argument
650 if (cbPointerData > cbShape - RT_OFFSETOF(VBVAMOUSEPOINTERSHAPE, au8Data))
653 cbPointerData, cbShape - RT_OFFSETOF(VBVAMOUSEPOINTERSHAPE, au8Data)));
674 pCtx->mouseShapeInfo.cbShape = 0;
688 pCtx->mouseShapeInfo.cbShape = cbPointerData;
1585 rc = SSMR3PutU32 (pSSM, pCtx->mouseShapeInfo.cbShape);
1587 if (pCtx->mouseShapeInfo.cbShape)
1589 rc = SSMR3PutMem (pSSM, pCtx->mouseShapeInfo.pu8Shape, pCtx->mouseShapeInfo.cbShape);
[all...]

Completed in 130 milliseconds