Changeset 33540 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Timestamp:
- Oct 28, 2010 9:27:05 AM (14 years ago)
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp
r33048 r33540 139 139 else 140 140 { 141 /* Retry using old inte face. */141 /* Retry using old interface. */ 142 142 AssertCompile(sizeof(VMMDevVideoModeSupportedRequest2) >= sizeof(VMMDevVideoModeSupportedRequest)); 143 143 VMMDevVideoModeSupportedRequest *req = (VMMDevVideoModeSupportedRequest *)req2; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxHGSMI.h
r28800 r33540 99 99 typedef struct VBOXVIDEOPORTPROCS 100 100 { 101 /* ored VBOXVIDEOPORTPROCS_xxx constants describing the supported funct yionality */101 /* ored VBOXVIDEOPORTPROCS_xxx constants describing the supported functionality */ 102 102 uint32_t fSupportedTypes; 103 103 -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideoHGSMI.cpp
r33532 r33540 863 863 if (p->fu32Flags & VBOX_MOUSE_POINTER_SHAPE) 864 864 { 865 /* If shape is supplied, then alway create the pointer visible.865 /* If shape is supplied, then always create the pointer visible. 866 866 * See comments in 'vboxUpdatePointerShape' 867 867 */ -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/wddm/VBoxVideoCm.cpp
r33530 r33540 45 45 /* commands list */ 46 46 LIST_ENTRY CommandsList; 47 /* event used to notify UMD about pen ging commands */47 /* event used to notify UMD about pending commands */ 48 48 PKEVENT pUmEvent; 49 /* sync hlock */49 /* sync lock */ 50 50 FAST_MUTEX Mutex; 51 51 /* indicates whether event signaling is needed on cmd add */ … … 149 149 150 150 /** 151 * @param pvCmd memory b yffer returned by vboxVideoCmCmdCreate151 * @param pvCmd memory buffer returned by vboxVideoCmCmdCreate 152 152 * @param cbSize should be <= cbSize posted to vboxVideoCmCmdCreate on command creation 153 153 */ -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/wddm/VBoxVideoVhwa.cpp
r33252 r33540 731 731 732 732 int rc = VINF_SUCCESS; 733 /* @todo: need a better sync h*/733 /* @todo: need a better sync */ 734 734 uint32_t cNew = ASMAtomicIncU32(&pSource->Vhwa.cOverlaysCreated); 735 735 if (cNew == 1) … … 774 774 Assert(!!(pSource->Vhwa.Settings.fFlags & VBOXVHWA_F_ENABLED)); 775 775 776 /* @todo: need a better sync h*/776 /* @todo: need a better sync */ 777 777 uint32_t cNew = ASMAtomicDecU32(&pSource->Vhwa.cOverlaysCreated); 778 778 int rc = VINF_SUCCESS; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/wddm/VBoxVideoVidPn.cpp
r33252 r33540 832 832 if (vboxVidPnMatchVideoSignal(&dummyMode.VideoSignalInfo, &pMonitorSMI->VideoSignalInfo)) 833 833 { 834 /* mark it as unnee ned */834 /* mark it as unneeded */ 835 835 pData->pResolutions[i].cx = 0; 836 836 break; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/wddm/VBoxVideoWddm.cpp
r33531 r33540 1239 1239 pCaps->SchedulingCaps.MultiEngineAware = 1; 1240 1240 pCaps->MemoryManagementCaps.Value = 0; 1241 /* @todo: this cor elates with pCaps->SchedulingCaps.MultiEngineAware */1241 /* @todo: this correlates with pCaps->SchedulingCaps.MultiEngineAware */ 1242 1242 pCaps->MemoryManagementCaps.PagingNode = 0; 1243 /* @todo: this cor elates with pCaps->SchedulingCaps.MultiEngineAware */1243 /* @todo: this correlates with pCaps->SchedulingCaps.MultiEngineAware */ 1244 1244 pCaps->GpuEngineTopology.NbAsymetricProcessingNodes = 1; 1245 1245 … … 3636 3636 pModeInfos, cModeInfos, &cModeInfos2, &iPreferredModeInfo); 3637 3637 Assert(Status == STATUS_SUCCESS); 3638 Assert(iPreferredModeInfo >= 0); /* the array should contain the pref fered info */3638 Assert(iPreferredModeInfo >= 0); /* the array should contain the preferred info */ 3639 3639 if (Status != STATUS_SUCCESS) 3640 3640 drprintf((__FUNCTION__": second call to VBoxWddmGetModesForResolution failed Status(0x%x), cModeInfos(%d), cModeInfos2(%d)\n", Status, cModeInfos, cModeInfos2)); … … 4048 4048 } 4049 4049 4050 /* error has occur ed, release & break */4050 /* error has occurred, release & break */ 4051 4051 pRecommendMonitorModesArg->pMonitorSourceModeSetInterface->pfnReleaseModeInfo( 4052 4052 pRecommendMonitorModesArg->hMonitorSourceModeSet, pNewMonitorSourceModeInfo); … … 4269 4269 * need to return it back to the UMD (User Mode Drive) */ 4270 4270 pAllocInfo->SurfDesc = pAllocation->SurfDesc; 4271 /* success, just conti onue */4271 /* success, just continue */ 4272 4272 continue; 4273 4273 }
Note:
See TracChangeset
for help on using the changeset viewer.