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

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMultiScreenLayout.cpp152 ULONG uHeight = 600; local
160 uHeight = pFrameBuffer->height();
165 iGuestScreen, uWidth, uHeight));
166 display.SetVideoModeHint(iGuestScreen, true, false, 0, 0, uWidth, uHeight, 32);
H A DUIMachineView.cpp624 ULONG uBuffer = 0, uWidth = 0, uHeight = 0; local
625 machine().QuerySavedScreenshotPNGSize(0, uBuffer, uWidth, uHeight);
629 size = QSize(uWidth, uHeight);
999 ULONG uWidth = 0, uHeight = 0; local
1000 const QVector<BYTE> screenData = machine().ReadSavedScreenshotPNGToArray(0, uWidth, uHeight);
H A DUIFrameBuffer.cpp199 * @param uHeight Height of the guest display, in pixels.
202 STDMETHOD(NotifyChange)(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
208 * @param uHeight Height of the update rectangle, in pixels.
211 STDMETHOD(NotifyUpdate)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight);
217 * @param uHeight Height of the update rectangle, in pixels.
221 STDMETHOD(NotifyUpdateImage)(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image));
225 * @param uHeight Height of the guest display, in pixels.
230 STDMETHOD(VideoModeSupported)(ULONG uWidth, ULONG uHeight, ULONG uBPP, BOOL *pbSupported);
731 STDMETHODIMP UIFrameBufferPrivate::NotifyChange(ULONG uScreenId, ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight) argument
746 (unsigned long)uWidth, (unsigned long)uHeight));
786 NotifyUpdate(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight) argument
822 NotifyUpdateImage(ULONG uX, ULONG uY, ULONG uWidth, ULONG uHeight, ComSafeArrayIn(BYTE, image)) argument
876 VideoModeSupported(ULONG uWidth, ULONG uHeight, ULONG uBPP, BOOL *pfSupported) argument
[all...]
H A DUISession.cpp1543 uint uXHot, uint uYHot, uint uWidth, uint uHeight)
1549 uint andMaskSize = (uWidth + 7) / 8 * uHeight;
1562 bi.bV5Height = - (LONG)uHeight;
1585 hMonoBitmap = CreateBitmap(uWidth, uHeight, 1, 1, NULL);
1600 pu8AndMaskWordAligned = (uint8_t *)RTMemTmpAllocZ((cbAndMaskScan + 1) * uHeight);
1619 for (i = 0; i < uHeight; i++)
1632 hMonoBitmap = ::CreateBitmap(uWidth, uHeight, 1, 1,
1647 for (uint y = 0; y < uHeight; y ++)
1681 XcursorImage *img = XcursorImageCreate(uWidth, uHeight);
1690 for (uint y = 0; y < uHeight;
1542 setPointerShape(const uchar *pShapeData, bool fHasAlpha, uint uXHot, uint uYHot, uint uWidth, uint uHeight) argument
[all...]
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/normal/
H A DUIMachineLogicNormal.cpp221 ULONG uWidth, uHeight, uBitsPerPixel; local
224 display().GetScreenResolution(iIndex, uWidth, uHeight, uBitsPerPixel, uOriginX, uOriginY, monitorStatus);
232 if (!uHeight)
233 uHeight = 600;
234 display().SetVideoModeHint(iIndex, true, false, 0, 0, uWidth, uHeight, 32);
/vbox/src/VBox/Frontends/VirtualBox/src/
H A DUIVMInfoDialog.cpp577 ULONG uHeight = 0; local
582 console.GetDisplay().GetScreenResolution(iScreen, uWidth, uHeight, uBpp, xOrigin, yOrigin, monitorStatus);
583 QString strResolution = QString("%1x%2").arg(uWidth).arg(uHeight);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.h293 uint32_t uHeight; member in struct:__anon13211
/vbox/src/VBox/Main/src-client/
H A DVideoRec.cpp477 uint32_t uWidth, uint32_t uHeight, uint32_t uRate, uint32_t uFps,
488 pStrm->uTargetHeight = uHeight;
489 pStrm->pu8RgbBuf = (uint8_t *)RTMemAllocZ(uWidth * uHeight * 4);
548 pStrm->VpxConfig.g_h = uHeight;
569 if (!vpx_img_alloc(&pStrm->VpxRawImage, VPX_IMG_FMT_I420, uWidth, uHeight, 1))
571 LogFlow(("Failed to allocate image %dx%d", uWidth, uHeight));
476 VideoRecStrmInit(PVIDEORECCONTEXT pCtx, uint32_t uScreen, const char *pszFile, uint32_t uWidth, uint32_t uHeight, uint32_t uRate, uint32_t uFps, uint32_t uMaxTime, uint32_t uMaxFileSize, const char *pszOptions) argument

Completed in 115 milliseconds