Changeset 29625 in vbox for trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Timestamp:
- May 18, 2010 12:40:24 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61778
- Location:
- trunk/src/VBox/Additions/WINNT/Graphics/Miniport
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/Helper.cpp
r28800 r29625 133 133 req2->bpp = bpp; 134 134 rc = VbglGRPerform(&req2->header); 135 if (RT_SUCCESS(rc) && RT_SUCCESS(req2->header.rc))135 if (RT_SUCCESS(rc)) 136 136 { 137 137 bRC = req2->fSupported; … … 153 153 154 154 rc = VbglGRPerform(&req->header); 155 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))155 if (RT_SUCCESS(rc)) 156 156 { 157 157 bRC = req->fSupported; … … 379 379 rc = VbglGRPerform (&req->header); 380 380 381 if (RT_SUCCESS(rc) && RT_SUCCESS(req->header.rc))381 if (RT_SUCCESS(rc)) 382 382 { 383 383 bRC = TRUE; -
trunk/src/VBox/Additions/WINNT/Graphics/Miniport/VBoxVideo.cpp
r28800 r29625 3372 3372 { 3373 3373 dprintf(("VBoxVideo::vboxVbvaEnable: rc = %Rrc!\n", rc)); 3374 3375 if (RT_SUCCESS(rc))3376 {3377 rc = req->header.rc;3378 }3379 3374 } 3380 3375
Note:
See TracChangeset
for help on using the changeset viewer.