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

/vbox/src/VBox/Main/src-client/
H A DVMMDevInterface.cpp344 * @param pShape The shape buffer. If NULL, then only pointer visibility is being changed.
350 void *pShape)
357 if (pShape)
362 pConsole->i_onMousePointerShapeChange(fVisible, fAlpha, xHot, yHot, width, height, (uint8_t *)pShape, cbShape);
347 vmmdevUpdatePointerShape(PPDMIVMMDEVCONNECTOR pInterface, bool fVisible, bool fAlpha, uint32_t xHot, uint32_t yHot, uint32_t width, uint32_t height, void *pShape) argument
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VBVA.cpp629 static int vbvaMousePointerShape (PVGASTATE pVGAState, VBVACONTEXT *pCtx, const VBVAMOUSEPOINTERSHAPE *pShape, HGSMISIZE cbShape) argument
631 bool fVisible = (pShape->fu32Flags & VBOX_MOUSE_POINTER_VISIBLE) != 0;
632 bool fAlpha = (pShape->fu32Flags & VBOX_MOUSE_POINTER_ALPHA) != 0;
633 bool fShape = (pShape->fu32Flags & VBOX_MOUSE_POINTER_SHAPE) != 0;
639 if (pShape->u32Width > 8192 || pShape->u32Height > 8192)
642 pShape->u32Width, pShape->u32Height));
646 cbPointerData = ((((pShape->u32Width + 7) / 8) * pShape
2406 VBVAMOUSEPOINTERSHAPE *pShape = (VBVAMOUSEPOINTERSHAPE *)pvBuffer; local
[all...]

Completed in 36 milliseconds