Changeset 50542 in vbox
- Timestamp:
- Feb 21, 2014 2:13:48 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92394
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/HGSMI/HGSMI.h
r50518 r50542 74 74 /* Heap types. */ 75 75 #define HGSMI_HEAP_TYPE_NULL 0 /* Heap not initialized. */ 76 #define HGSMI_HEAP_TYPE_POINTER 1 /* RTHEAPSIMPLE. Obsolete. */77 #define HGSMI_HEAP_TYPE_OFFSET 2 /* RTHEAPOFFSET. Obsolete. */76 #define HGSMI_HEAP_TYPE_POINTER 1 /* Deprecated. RTHEAPSIMPLE. */ 77 #define HGSMI_HEAP_TYPE_OFFSET 2 /* Deprecated. RTHEAPOFFSET. */ 78 78 #define HGSMI_HEAP_TYPE_MA 3 /* Memory allocator. */ 79 79 -
trunk/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/VBoxDispVBVA.cpp
r50482 r50542 425 425 426 426 rc = HGSMIHeapSetup(&pDev->hgsmi.ctx.heapCtx, 427 HGSMI_HEAP_TYPE_ POINTER,427 HGSMI_HEAP_TYPE_MA, 428 428 (uint8_t *)pDev->memInfo.VideoRamBase+pDev->layout.offDisplayInfo+sizeof(HGSMIHOSTFLAGS), 429 429 pDev->layout.cbDisplayInfo-sizeof(HGSMIHOSTFLAGS), -
trunk/src/VBox/Additions/WINNT/Graphics/Video/mp/wddm/VBoxMPVdma.cpp
r50482 r50542 1505 1505 /* Setup a HGSMI heap within the adapter information area. */ 1506 1506 rc = VBoxSHGSMIInit(&pInfo->CmdHeap, 1507 HGSMI_HEAP_TYPE_ POINTER,1507 HGSMI_HEAP_TYPE_MA, 1508 1508 pvBuffer, 1509 1509 cbBuffer, -
trunk/src/VBox/Additions/common/VBoxVideo/HGSMIBase.cpp
r50482 r50542 326 326 pCtx->port = (RTIOPORT)VGA_PORT_HGSMI_GUEST; 327 327 #ifdef VBOX_WDDM_MINIPORT 328 return VBoxSHGSMIInit(&pCtx->heapCtx, HGSMI_HEAP_TYPE_ POINTER, pvGuestHeapMemory,328 return VBoxSHGSMIInit(&pCtx->heapCtx, HGSMI_HEAP_TYPE_MA, pvGuestHeapMemory, 329 329 cbGuestHeapMemory, offVRAMGuestHeapMemory, pEnv); 330 330 #else 331 return HGSMIHeapSetup(&pCtx->heapCtx, HGSMI_HEAP_TYPE_ POINTER, pvGuestHeapMemory,331 return HGSMIHeapSetup(&pCtx->heapCtx, HGSMI_HEAP_TYPE_MA, pvGuestHeapMemory, 332 332 cbGuestHeapMemory, offVRAMGuestHeapMemory, pEnv); 333 333 #endif -
trunk/src/VBox/Devices/Graphics/HGSMI/HGSMIHost.cpp
r50518 r50542 1163 1163 { 1164 1164 rc = HGSMIHeapSetup (&pIns->hostHeap, 1165 HGSMI_HEAP_TYPE_ OFFSET,1165 HGSMI_HEAP_TYPE_MA, 1166 1166 pIns->area.pu8Base+offHeap, 1167 1167 cbHeap,
Note:
See TracChangeset
for help on using the changeset viewer.