Changeset 25971 in vbox for trunk/src/VBox/Main/DisplayImpl.cpp
- Timestamp:
- Jan 22, 2010 12:54:19 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/DisplayImpl.cpp
r25966 r25971 61 61 #if defined(VBOX_WITH_VIDEOHWACCEL) 62 62 /** VBVA callbacks */ 63 PPDM DDISPLAYVBVACALLBACKS pVBVACallbacks;63 PPDMIDISPLAYVBVACALLBACKS pVBVACallbacks; 64 64 #endif 65 65 } DRVMAINDISPLAY, *PDRVMAINDISPLAY; … … 3371 3371 if (RTUuidCompare2Strs(pszIID, PDMIBASE_IID) == 0) 3372 3372 return &pDrvIns->IBase; 3373 if (RTUuidCompare2Strs(pszIID, PDMI NTERFACE_DISPLAY_CONNECTOR) == 0)3373 if (RTUuidCompare2Strs(pszIID, PDMIDISPLAYCONNECTOR_IID) == 0) 3374 3374 return &pDrv->Connector; 3375 3375 return NULL; … … 3449 3449 * Get the IDisplayPort interface of the above driver/device. 3450 3450 */ 3451 pData->pUpPort = (PPDMIDISPLAYPORT)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_DISPLAY_PORT);3451 pData->pUpPort = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIDISPLAYPORT); 3452 3452 if (!pData->pUpPort) 3453 3453 { … … 3456 3456 } 3457 3457 #if defined(VBOX_WITH_VIDEOHWACCEL) 3458 pData->pVBVACallbacks = (PPDMDDISPLAYVBVACALLBACKS)pDrvIns->pUpBase->pfnQueryInterface(pDrvIns->pUpBase, PDMINTERFACE_DISPLAY_VBVA_CALLBACKS);3458 pData->pVBVACallbacks = PDMIBASE_QUERY_INTERFACE(pDrvIns->pUpBase, PDMIDISPLAYVBVACALLBACKS); 3459 3459 if (!pData->pVBVACallbacks) 3460 3460 {
Note:
See TracChangeset
for help on using the changeset viewer.