- Timestamp:
- Feb 26, 2010 2:33:01 PM (15 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r26173 r26856 5746 5746 { 5747 5747 rc = vbvaVHWAConstruct(pThis); 5748 AssertRC(rc); 5748 if (rc != VERR_NOT_IMPLEMENTED) 5749 AssertRC(rc); 5749 5750 } 5750 5751 #endif -
trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
r26833 r26856 1016 1016 memset(pHdr, 0, VBOXVHWACMD_HEADSIZE()); 1017 1017 pHdr->cRefs = 1; 1018 pHdr->rc = VERR_ GENERAL_FAILURE;1018 pHdr->rc = VERR_NOT_IMPLEMENTED; 1019 1019 pHdr->enmCmd = enmCmd; 1020 1020 pHdr->Flags = VBOXVHWACMD_FLAG_HH_CMD; … … 1042 1042 if (pVGAState->pDrv->pfnVHWACommandProcess) 1043 1043 pVGAState->pDrv->pfnVHWACommandProcess(pVGAState->pDrv, pCmd); 1044 #ifdef DEBUG_misha 1044 1045 else 1045 1046 AssertFailed(); 1047 #endif 1046 1048 return 0; 1047 1049 }
Note:
See TracChangeset
for help on using the changeset viewer.