Searched defs:cBPP (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dsetmode.c122 uint32_t cBPP = fEnabledAndVisible || pVBox->fHostHasScreenBlankingFlag ? pFrameBuffer->cBPP : 0; local
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",
126 pFrameBuffer->cHeight, pFrameBuffer->cBPP);
128 offStart = (y * pFrameBuffer->cWidth + x) * pFrameBuffer->cBPP / 8;
130 VBoxVideoSetModeRegisters(cWidth, cHeight, pFrameBuffer->cWidth, pFrameBuffer->cBPP, 0, x, y);
135 pFrameBuffer->cWidth * pFrameBuffer->cBPP / 8, cWidth, cHeight, cBPP, fFlags);
H A Dvboxvideo.h276 unsigned cBPP; member in struct:vbvxFrameBuffer
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Ddisplay.cpp51 unsigned cBPP; member in struct:screenInformation
148 static void updateScreenInformation(struct DISPLAYSTATE *pState, unsigned cx, unsigned cy, unsigned cBPP, unsigned iDisplay, argument
166 pState->paScreenInformation[iDisplay].cBPP = cBPP;
279 unsigned cx = 0, cy = 0, cBPP = 0, x = 0, y = 0; local
282 rc = VbglR3RetrieveVideoMode(i, &cx, &cy, &cBPP, &x, &y,
288 updateScreenInformation(pState, cx, cy, cBPP, i, x, y, fEnabled, true);
307 uint32_t cx = 0, cy = 0, cBPP = 0, iDisplay = 0, x = 0, y = 0; local
311 rc = VbglR3GetDisplayChangeRequest(&cx, &cy, &cBPP, &iDisplay,
319 cx, cy, cBPP, iDispla
[all...]
/vbox/src/VBox/Additions/common/VBoxVideo/
H A DModesetting.cpp125 * @param cBPP the colour depth of the mode
134 uint16_t cVirtWidth, uint16_t cBPP,
147 VBoxVideoCmnPortWriteUshort(VBE_DISPI_IOPORT_DATA, cBPP);
240 * @param cBPP the colour depth of the mode
250 uint16_t cBPP,
273 pScreen->u16BitsPerPixel = cBPP;
133 VBoxVideoSetModeRegisters(uint16_t cWidth, uint16_t cHeight, uint16_t cVirtWidth, uint16_t cBPP, uint16_t fFlags, uint16_t cx, uint16_t cy) argument
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
/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_mode.c70 int width, height, cBPP, pitch; local
80 cBPP = crtc->enabled ? CRTC_FB(crtc)->bits_per_pixel : 32;
82 pitch = crtc->enabled ? CRTC_FB(crtc)->pitch : width * cBPP / 8;
84 pitch = crtc->enabled ? CRTC_FB(crtc)->pitches[0] : width * cBPP / 8;
87 VBoxVideoSetModeRegisters(width, height, pitch * 8 / cBPP,
94 crtc->x * cBPP / 8 + crtc->y * pitch,
96 vbox_crtc->fBlanked ? 0 : cBPP, fFlags);
/vbox/src/VBox/Main/src-client/
H A DMouseImpl.cpp952 ULONG cBPP = 0; local
955 HRESULT rc = pDisplay->i_getScreenResolution(uScreenId, &cWidth, &cHeight, &cBPP, &xOrigin, &yOrigin);
956 NOREF(cBPP);
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VBVA.cpp2625 uint32_t cBPP, uint32_t iDisplay, uint32_t dx,
2638 pCtx->aModeHints[iDisplay].cBPP = cBPP;
2651 uint32_t cy, uint32_t cBPP,
2662 rc = vbvaSendModeHintWorker(pThis, cx, cy, cBPP, iDisplay, dx, dy, fEnabled,
2624 vbvaSendModeHintWorker(PVGASTATE pThis, uint32_t cx, uint32_t cy, uint32_t cBPP, uint32_t iDisplay, uint32_t dx, uint32_t dy, uint32_t fEnabled, uint32_t fNotifyGuest) argument
2650 vbvaPortSendModeHint(PPDMIDISPLAYPORT pInterface, uint32_t cx, uint32_t cy, uint32_t cBPP, uint32_t iDisplay, uint32_t dx, uint32_t dy, uint32_t fEnabled, uint32_t fNotifyGuest) argument
H A DDevVGA.cpp917 uint16_t cBPP = pThis->vbe_regs[VBE_DISPI_INDEX_BPP]; local
920 if (!cBPP || !cX)
922 uint32_t cbLinePitch = calc_line_pitch(cBPP, cVirtWidth);
924 cbLinePitch = calc_line_pitch(cBPP, cX);
932 if (cBPP == 4)
935 offStart += offX * ((cBPP + 7) >> 3);
/vbox/include/VBox/
H A DVBoxVideo.h1160 uint32_t cBPP; /* Which has never been used... */ member in struct:VBVAMODEHINT

Completed in 1592 milliseconds