Searched defs:offVRAM (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/Graphics/
H A DDevVGA_VDMA.cpp1703 VBOXCMDVBVAOFFSET offVRAM = pData->Alloc.u.offVRAM; local
1704 if (offVRAM & PAGE_OFFSET_MASK)
1706 WARN(("offVRAM address is not on page boundary\n"));
1713 if (offVRAM >= pVGAState->vram_size)
1725 if (offVRAM + ((VBOXCMDVBVAOFFSET)cPages << PAGE_SHIFT) >= pVGAState->vram_size)
1731 uint8_t *pu8Vram = pu8VramBase + offVRAM;
1743 VBOXCMDVBVAOFFSET offVRAM = pFill->offVRAM; local
1744 if (offVRAM
[all...]
H A DDevVGA.cpp309 * @param offVRAM The VRAM offset of the page to set.
311 DECLINLINE(void) vga_set_dirty(PVGASTATE pThis, RTGCPHYS offVRAM) argument
313 AssertMsg(offVRAM < pThis->vram_size, ("offVRAM = %p, pThis->vram_size = %p\n", offVRAM, pThis->vram_size));
314 ASMBitSet(&pThis->au32DirtyBitmap[0], offVRAM >> PAGE_SHIFT);
324 * @param offVRAM The VRAM offset of the page to check.
326 DECLINLINE(bool) vga_is_dirty(PVGASTATE pThis, RTGCPHYS offVRAM) argument
328 AssertMsg(offVRAM < pThis->vram_size, ("offVRAM
[all...]
/vbox/src/VBox/HostServices/SharedOpenGL/crserverlib/presenter/
H A Dserver_presenter.cpp146 static int8_t crFbImgFromDimOffVramBGRA(VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, CR_BLITTER_IMG *pImg) argument
149 if (offVRAM >= g_cbVRam
150 || offVRAM + cbBuff >= g_cbVRam)
156 uint8_t *pu8Buf = g_pvVRamBase + offVRAM;
164 return crFbImgFromDimOffVramBGRA(pDesc->Info.u.offVRAM, pDesc->u16Width, pDesc->u16Height, pImg);
1235 static int8_t crVBoxServerCrCmdBltPrimaryVramGenericProcess(uint32_t u32PrimaryID, VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, const RTPOINT *pPos, uint32_t cRects, const RTRECT *pRects, bool fToPrimary);
1255 VBOXCMDVBVAOFFSET offVRAM = (VBOXCMDVBVAOFFSET)(((uintptr_t)CrFbGetVRAM(hFb)) - ((uintptr_t)g_pvVRamBase)); local
1257 int8_t i8Result = crVBoxServerCrCmdBltPrimaryVramGenericProcess(pScreen->u32ViewIndex, offVRAM, pScreen->u32Width, pScreen->u32Height, &Pos, cRegions, pRegions, true);
1790 HCR_FRAMEBUFFER CrPMgrFbGetEnabledByVramStart(VBOXCMDVBVAOFFSET offVRAM) argument
1797 if (pScreen->u32StartOffset == offVRAM)
3313 crVBoxServerCrCmdBltPrimaryVramGenericProcess(uint32_t u32PrimaryID, VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, const RTPOINT *pPos, uint32_t cRects, const RTRECT *pRects, bool fToPrimary) argument
3404 VBOXCMDVBVAOFFSET offVRAM = pCmd->alloc.u.offVRAM; local
3424 crVBoxServerCrCmdBltIdToVramMem(uint32_t hostId, VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, const RTPOINT *pPos, uint32_t cRects, const RTRECT *pRects) argument
3470 crVBoxServerCrCmdBltIdToVram(uint32_t hostId, VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, const RTPOINT *pPos, uint32_t cRects, const RTRECT *pRects) argument
3663 VBOXCMDVBVAOFFSET offVRAM = pCmd->alloc.u.offVRAM; local
3689 VBOXCMDVBVAOFFSET offVRAM = pCmd->alloc1.Info.u.offVRAM; local
3818 crVBoxServerCrCmdClrFillVramGenericProcess(VBOXCMDVBVAOFFSET offVRAM, uint32_t width, uint32_t height, const RTRECT *pRects, uint32_t cRects, uint32_t u32Color) argument
[all...]
/vbox/include/VBox/
H A DVBoxVideo.h1770 VBOXCMDVBVAOFFSET offVRAM; member in union:VBOXCMDVBVA_ALLOCINFO::__anon134
1888 /* for now can only contain offVRAM.
1906 VBOXCMDVBVAOFFSET offVRAM; member in struct:VBOXCMDVBVA_PAGING_FILL

Completed in 79 milliseconds