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

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibVideo.cpp150 * @param pcx Where to store the horizontal pixel resolution
164 static int getDisplayChangeRequest2(uint32_t *pcx, uint32_t *pcy, argument
170 AssertPtrReturn(pcx, VERR_INVALID_PARAMETER);
183 *pcx = Req.xres;
196 * @param pcx Where to store the horizontal pixel resolution
221 VBGLR3DECL(int) VbglR3GetDisplayChangeRequest(uint32_t *pcx, uint32_t *pcy, argument
231 AssertPtrReturn(pcx, VERR_INVALID_PARAMETER);
249 *pcx = Req.xres;
270 return getDisplayChangeRequest2(pcx, pcy, pcBits, piDisplay, fAck);
430 * @param pcx wher
437 VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx, unsigned *pcy, unsigned *pcBits, unsigned *px, unsigned *py, bool *pfEnabled) argument
[all...]
/vbox/src/VBox/Main/include/
H A DDisplayImpl.h123 virtual HRESULT i_getScreenResolution(ULONG cScreen, ULONG *pcx,
200 virtual HRESULT i_getScreenResolution(ULONG cScreen, ULONG *pcx, argument
203 return getScreenResolution(cScreen, pcx, pcy, pcBPP, pXOrigin, pYOrigin, NULL);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp4724 * @param pcx Where to store the width of the bitmap.
4728 static DECLCALLBACK(int) vgaPortTakeScreenshot(PPDMIDISPLAYPORT pInterface, uint8_t **ppu8Data, size_t *pcbData, uint32_t *pcx, uint32_t *pcy) argument
4733 LogFlow(("vgaPortTakeScreenshot: ppu8Data=%p pcbData=%p pcx=%p pcy=%p\n", ppu8Data, pcbData, pcx, pcy));
4738 if (!RT_VALID_PTR(ppu8Data) || !RT_VALID_PTR(pcbData) || !RT_VALID_PTR(pcx) || !RT_VALID_PTR(pcy))
4802 *pcx = Connector.cx;
4824 LogFlow(("vgaPortTakeScreenshot: returns %Rrc (cbData=%d cx=%d cy=%d)\n", rc, *pcbData, *pcx, *pcy));

Completed in 126 milliseconds