Changeset 20483 in vbox
- Timestamp:
- Jun 11, 2009 9:58:45 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxVideo.h
r20478 r20483 295 295 typedef struct _VBOXVHWA_RECTL 296 296 { 297 int 16_t x;298 int 16_t y;299 uint 16_t w;300 uint 16_t h;297 int32_t x; 298 int32_t y; 299 uint32_t w; 300 uint32_t h; 301 301 } VBOXVHWA_RECTL; 302 302 … … 464 464 typedef struct _VBOXVHWACMD_SURF_BLT 465 465 { 466 uint64_t DstGuestSurfInfo; 467 uint64_t SrcGuestSurfInfo; 466 468 union 467 469 { -
trunk/src/VBox/Additions/WINNT/Graphics/Display/dd.c
r20478 r20483 1072 1072 DWORD APIENTRY DdBlt(PDD_BLTDATA lpBlt) 1073 1073 { 1074 PPDEV pDev = (PPDEV)lpBlt->lpDD->dhpdev; 1074 1075 DISPDBG((0, "%s\n", __FUNCTION__)); 1075 lpBlt->ddRVal = DD_OK;1076 vboxVHWASurfBlt(pDev, lpBlt); 1076 1077 return DDHAL_DRIVER_HANDLED; 1077 1078 } -
trunk/src/VBox/Additions/WINNT/Graphics/Display/driver.h
r20478 r20483 98 98 { 99 99 VBOXVHWA_SURFHANDLE hHostHandle; 100 volatile uint32_t cPendingBltsSrc; 101 volatile uint32_t cPendingBltsDst; 102 volatile uint32_t cPendingFlips; 100 103 }VBOXVHWASURFDESC, *PVBOXVHWASURFDESC; 104 101 105 typedef struct _VBOXVHWAINFO 102 106 { … … 299 303 void vboxVHWASurfCreate(PPDEV ppdev, PDD_CREATESURFACEDATA lpCreateSurface); 300 304 void vboxVHWASurfDestroy(PPDEV ppdev, PDD_DESTROYSURFACEDATA lpDestroySurface); 305 void vboxVHWASurfBlt(PPDEV ppdev, PDD_BLTDATA lpBlt); 301 306 #endif 302 307 #endif
Note:
See TracChangeset
for help on using the changeset viewer.