Searched refs:cHeight (Results 1 - 17 of 17) sorted by relevance

/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dsetmode.c113 void vbvxSetMode(ScrnInfoPtr pScrn, unsigned cDisplay, unsigned cWidth, unsigned cHeight, int x, int y, bool fEnabled, argument
120 bool fEnabledAndVisible = fEnabled && x + cWidth <= pFrameBuffer->cWidth && y + cHeight <= pFrameBuffer->cHeight;
124 TRACE_LOG("cDisplay=%u, cWidth=%u, cHeight=%u, x=%d, y=%d, fEnabled=%d, fConnected=%d, pFrameBuffer: { x0=%d, y0=%d, cWidth=%u, cHeight=%u, cBPP=%u }\n",
125 cDisplay, cWidth, cHeight, x, y, fEnabled, fConnected, pFrameBuffer->x0, pFrameBuffer->y0, pFrameBuffer->cWidth,
126 pFrameBuffer->cHeight, pFrameBuffer->cBPP);
127 VBVXASSERT(cWidth != 0 && cHeight != 0, ("cWidth = 0 or cHeight = 0\n"));
130 VBoxVideoSetModeRegisters(cWidth, cHeight, pFrameBuffe
148 VBOXSetMode(ScrnInfoPtr pScrn, unsigned cDisplay, unsigned cWidth, unsigned cHeight, int x, int y) argument
[all...]
H A Dvboxvideo.h274 unsigned cHeight; member in struct:vbvxFrameBuffer
279 extern void vbvxSetMode(ScrnInfoPtr pScrn, unsigned cDisplay, unsigned cWidth, unsigned cHeight, int x, int y, bool fEnabled,
334 unsigned cHeight, int x, int y);
H A Dpointer.c70 uint32_t cHeight; member in struct:vboxCursorImage
156 vbox_show_shape(pImage->cWidth, pImage->cHeight, 0, pvImage);
160 pImage->cHotX, pImage->cHotY, pImage->cWidth, pImage->cHeight,
327 pImage->cHeight = h;
/vbox/src/VBox/Additions/common/VBoxVideo/
H A DModesetting.cpp123 * @param cHeight the mode height
133 RTDECL(void) VBoxVideoSetModeRegisters(uint16_t cWidth, uint16_t cHeight, argument
142 VBoxVideoCmnPortWriteUshort(VBE_DISPI_IOPORT_DATA, cHeight);
239 * @param cHeight the mode height
249 uint32_t cHeight,
272 pScreen->u32Height = cHeight;
291 * @param cHeight Rectangle height.
296 uint32_t cWidth, uint32_t cHeight)
300 Log(("%s: cOriginX=%u, cOriginY=%u, cWidth=%u, cHeight=%u\n", __PRETTY_FUNCTION__, (unsigned)cOriginX, (unsigned)cOriginX,
301 (unsigned)cWidth, (unsigned)cHeight));
242 VBoxHGSMIProcessDisplayInfo(PHGSMIGUESTCOMMANDCONTEXT pCtx, uint32_t cDisplay, int32_t cOriginX, int32_t cOriginY, uint32_t offStart, uint32_t cbPitch, uint32_t cWidth, uint32_t cHeight, uint16_t cBPP, uint16_t fFlags) argument
295 VBoxHGSMIUpdateInputMapping(PHGSMIGUESTCOMMANDCONTEXT pCtx, int32_t cOriginX, int32_t cOriginY, uint32_t cWidth, uint32_t cHeight) argument
[all...]
H A DHGSMIBase.cpp539 * @param cHeight height in pixels of the cursor
548 uint32_t cHeight,
559 cbData = ((((cWidth + 7) / 8) * cHeight + 3) & ~3)
560 + cWidth * 4 * cHeight;
566 LogFlowFunc(("cbData %d, %dx%d\n", cbData, cWidth, cHeight));
589 p->u32Height = cHeight;
543 VBoxHGSMIUpdatePointerShape(PHGSMIGUESTCOMMANDCONTEXT pCtx, uint32_t fFlags, uint32_t cHotX, uint32_t cHotY, uint32_t cWidth, uint32_t cHeight, uint8_t *pPixels, uint32_t cbLength) argument
/vbox/include/VBox/
H A DVBoxVideoGuest.h256 uint32_t cHeight,
314 RTDECL(void) VBoxVideoSetModeRegisters(uint16_t cWidth, uint16_t cHeight,
331 uint32_t cHeight,
335 uint32_t cWidth, uint32_t cHeight);
/vbox/include/VBox/RemoteDesktop/
H A DVRDEImage.h59 uint32_t cHeight; /* The height of the bitmap in pixels. */ member in struct:VRDEIMAGEBITMAP
H A DVRDEOrders.h130 uint16_t cHeight; member in struct:_VRDEDATABITS
H A DVRDE.h1180 unsigned cHeight; member in struct:_VRDEFRAMEBUFFERINFO
1384 * @param cHeight Requested height.
1390 unsigned cHeight,
1463 unsigned cHeight,
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispDrawCmd.cpp212 ULONG cHeight; local
225 cHeight = prcl->bottom - prcl->top;
251 pSSB->pBuffer = (BYTE *)EngAllocMem (0, cWidth * cHeight * cbPixel, MEM_ALLOC_TAG);
268 LOG(("cHeight = %d, pDst = %p, pSrc = %p, lDeltaSrc = %d, lDeltaDst = %d",
269 cHeight, pDst, pSrc, lDeltaSrc, lDeltaDst));
271 while (cHeight--)
H A DVBoxDispVRDP.cpp443 static BOOL vrdpWriteBits (PVBOXDISPDEV pDev, uint8_t *pu8Bits, int lDelta, int32_t x, int32_t y, uint32_t cWidth, uint32_t cHeight, int bytesPerPixel) argument
449 bits.cb = cHeight * cWidth * bytesPerPixel;
453 bits.cHeight = (uint16_t)cHeight;
460 while (cHeight--)
545 uint32_t cHeight; local
560 cHeight = rclCopy.bottom - rclCopy.top;
562 if (cWidth == 0 || cHeight == 0)
573 bRc = vrdpWriteBits(pDev, pu8Bits, lDelta, rclCopy.left, rclCopy.top, cWidth, cHeight, bytesPerPixel);
580 rclCopy.left, rclCopy.top, cWidth, cHeight, bytesPerPixe
888 uint32_t cHeight = psoSrc->sizlBitmap.cy; local
[all...]
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp272 info.cWidth = dummyWidth, info.cHeight = dummyHeight;
275 unsigned char *FrameBuffer = (unsigned char *)RTMemAlloc(info.cWidth * info.cHeight * VNC_SIZEOFRGBA); // RGBA
276 rfbNewFramebuffer(instance->mVNCServer, (char *)FrameBuffer, info.cWidth, info.cHeight, 8, 3, VNC_SIZEOFRGBA);
734 LogRel(("VNCServerImpl::VRDEResize to %dx%dx%dbpp\n", info.cWidth, info.cHeight, info.cBitsPerPixel));
737 unsigned char *FrameBuffer = (unsigned char *)RTMemAlloc(info.cWidth * info.cHeight * VNC_SIZEOFRGBA); // RGBA
742 for (i = 0, j = 0; i < info.cWidth * info.cHeight * VNC_SIZEOFRGBA; i += VNC_SIZEOFRGBA, j += info.cBitsPerPixel / 8)
756 i < info.cWidth * info.cHeight * VNC_SIZEOFRGBA;
766 rfbNewFramebuffer(instance->mVNCServer, (char *)FrameBuffer, info.cWidth, info.cHeight, 8, 3, VNC_SIZEOFRGBA);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA-SVGA3d.h48 SVGAGuestPtr src, uint32_t offSrc, int32_t cbSrcPitch, uint32_t cbWidth, uint32_t cHeight);
H A DDevVGA-SVGA.cpp3272 * @param cHeight Source height
3275 SVGAGuestPtr src, uint32_t offSrc, int32_t cbSrcPitch, uint32_t cbWidth, uint32_t cHeight)
3283 Log(("vmsvgaGMRTransfer: gmr=%x offset=%x pitch=%d cbWidth=%d cHeight=%d; src offset=%d src pitch=%d\n",
3284 src.gmrId, src.offset, cbDestPitch, cbWidth, cHeight, offSrc, cbSrcPitch));
3285 Assert(cbWidth && cHeight);
3292 ("src.offset=%#x offSrc=%#x cbSrcPitch=%#x cHeight=%#x cbWidth=%#x cbTotal=%#x vram_size=%#x\n",
3293 src.offset, offSrc, cbSrcPitch, cHeight, cbWidth, pThis->vram_size),
3295 AssertMsgReturn(offSrc + cbSrcPitch * (cHeight - 1) + cbWidth <= pThis->vram_size,
3296 ("src.offset=%#x offSrc=%#x cbSrcPitch=%#x cHeight=%#x cbWidth=%#x cbTotal=%#x vram_size=%#x\n",
3297 src.offset, offSrc, cbSrcPitch, cHeight, cbWidt
3274 vmsvgaGMRTransfer(PVGASTATE pThis, const SVGA3dTransferType enmTransferType, uint8_t *pbDst, int32_t cbDestPitch, SVGAGuestPtr src, uint32_t offSrc, int32_t cbSrcPitch, uint32_t cbWidth, uint32_t cHeight) argument
[all...]
/vbox/src/VBox/Main/src-client/
H A DMouseImpl.cpp951 ULONG cHeight = 0; local
955 HRESULT rc = pDisplay->i_getScreenResolution(uScreenId, &cWidth, &cHeight, &cBPP, &xOrigin, &yOrigin);
972 int32_t y2 = y1 + cHeight;
H A DConsoleVRDPServer.cpp1122 pInfo->cHeight = ulHeight;
1296 DECLCALLBACK(void) ConsoleVRDPServer::VRDPCallbackVideoModeHint(void *pvCallback, unsigned cWidth, unsigned cHeight, argument
1303 cWidth, cHeight, cBitsPerPixel);
2045 image.cHeight = p->h;
/vbox/src/VBox/Main/include/
H A DConsoleVRDPServer.h196 static DECLCALLBACK(void) VRDPCallbackVideoModeHint (void *pvCallback, unsigned cWidth, unsigned cHeight, unsigned cBitsPerPixel, unsigned uScreenId);

Completed in 568 milliseconds