Searched refs:uHeight (Results 1 - 15 of 15) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DVideoRec.h29 uint32_t uWidth, uint32_t uHeight, uint32_t uRate, uint32_t uFps,
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
/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/runtime/
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 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 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...]
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 DUISession.h378 void setPointerShape(const uchar *pShapeData, bool fHasAlpha, uint uXHot, uint uYHot, uint uWidth, uint uHeight);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA.cpp248 SSMFIELD_ENTRY( VMSVGAState, uHeight),
527 pThis->svga.viewport.cy = RT_MIN(cy, (uint32_t)pThis->svga.uHeight);
574 && pThis->svga.uHeight != VMSVGA_VAL_UNINITIALIZED)
576 *pu32 = pThis->svga.uHeight;
755 && pThis->svga.uHeight != VMSVGA_VAL_UNINITIALIZED)
758 *pu32 = (uint32_t)pThis->svga.uHeight * pThis->svga.cbScanline;
927 *pu32 = pThis->svga.uHeight;
958 || pThis->svga.uHeight == VMSVGA_VAL_UNINITIALIZED
962 Log(("vmsvgaChangeMode: BOGUS sEnable LFB mode and resize to (%d,%d) bpp=%d\n", pThis->svga.uWidth, pThis->svga.uHeight, pThis->svga.uBpp));
967 || pThis->svga.uHeight
[all...]
H A DDevVGA-SVGA3d-ogl.cpp3933 pSurface->pMipmapLevels[0].size.height != pThis->svga.uHeight)
3936 float yMultiplier = (float)pSurface->pMipmapLevels[0].size.height / (float)pThis->svga.uHeight;
3938 LogFlow(("size (%d vs %d) (%d vs %d) multiplier %d\n", pSurface->pMipmapLevels[0].size.width, pThis->svga.uWidth, pSurface->pMipmapLevels[0].size.height, pThis->svga.uHeight, (int)(xMultiplier * 100.0), (int)(yMultiplier * 100.0)));
4019 glOrtho(0, pThis->svga.uWidth, pThis->svga.uHeight, 0, 0.0, -1.0);
4054 vertexTop = ((uint32_t)pThis->svga.uHeight >= pRect[i].y + pRect[i].h) ? pThis->svga.uHeight - pRect[i].y - pRect[i].h : 0;
4055 vertexBottom = pThis->svga.uHeight - pRect[i].y;
4143 pThis->svga.uHeight - (RT_MIN(pRect[i].y + pRect[i].h, pThis->svga.viewport.y + pThis->svga.viewport.cy) - pThis->svga.viewport.y), /* exclusive. */
4145 pThis->svga.uHeight - (RT_MAX(pRect[i].y, pThis->svga.viewport.y) - pThis->svga.viewport.y),
4343 cs.cy = pThis->svga.uHeight;
[all...]
H A DDevVGA.h293 uint32_t uHeight; member in struct:__anon13211
H A DDevVGA-SVGA3d-win.cpp2837 pSurface->pMipmapLevels[0].size.height != pThis->svga.uHeight)
2840 float yMultiplier = (float)pSurface->pMipmapLevels[0].size.height / (float)pThis->svga.uHeight;
2986 cs.cy = pThis->svga.uHeight;
3317 cs.cy = pThis->svga.uHeight;
4318 pThis->svga.uHeight,
H A DDevVGA.cpp2104 || s->svga.uHeight == VMSVGA_VAL_UNINITIALIZED
2169 || pThis->svga.uHeight == VMSVGA_VAL_UNINITIALIZED
2177 height = pThis->svga.uHeight;
/vbox/src/VBox/Frontends/VirtualBox/src/globals/
H A DUIMessageCenter.h295 bool cannotEnterFullscreenMode(ULONG uWidth, ULONG uHeight, ULONG uBpp, ULONG64 uMinVRAM) const;
296 void cannotEnterSeamlessMode(ULONG uWidth, ULONG uHeight, ULONG uBpp, ULONG64 uMinVRAM) const;
/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);

Completed in 147 milliseconds