/vbox/src/VBox/Additions/x11/vboxvideo/ |
H A D | setmode.c | 122 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 D | vboxvideo.h | 276 unsigned cBPP; member in struct:vbvxFrameBuffer
|
/vbox/src/VBox/Additions/x11/VBoxClient/ |
H A D | display.cpp | 51 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 D | Modesetting.cpp | 125 * @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 D | vbox_mode.c | 70 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 D | MouseImpl.cpp | 952 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 D | DevVGA_VBVA.cpp | 2625 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 D | DevVGA.cpp | 917 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 D | VBoxVideo.h | 1160 uint32_t cBPP; /* Which has never been used... */ member in struct:VBVAMODEHINT
|