Changeset 99917 in vbox for trunk/src/VBox/Devices/PC
- Timestamp:
- May 22, 2023 7:06:14 PM (22 months ago)
- svn:sync-xref-src-repo-rev:
- 157560
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevQemuFwCfg.cpp
r99739 r99917 1636 1636 static DECLCALLBACK(int) qemuFwCfgR3RamfbPortUpdateDisplayAll(PPDMIDISPLAYPORT pInterface, bool fFailOnResize) 1637 1637 { 1638 RT_NOREF(pInterface, fFailOnResize); 1639 AssertReleaseFailed(); 1640 return VERR_NOT_IMPLEMENTED; 1638 RT_NOREF(fFailOnResize); 1639 return qemuFwCfgR3RamfbPortUpdateDisplay(pInterface); 1641 1640 } 1642 1641 … … 1751 1750 1752 1751 PDMDevHlpCritSectLeave(pThis->pDevIns, &pThis->CritSectRamfb); 1752 } 1753 1754 1755 /** 1756 * @interface_method_impl{PDMIDISPLAYPORT,pfnSendModeHint} 1757 */ 1758 DECLCALLBACK(int) qemuFwCfgR3RamfbPortSendModeHint(PPDMIDISPLAYPORT pInterface, uint32_t cx, uint32_t cy, uint32_t cBPP, 1759 uint32_t iDisplay, uint32_t dx, uint32_t dy, uint32_t fEnabled, uint32_t fNotifyGuest) 1760 { 1761 RT_NOREF(pInterface, cx, cy, cBPP, iDisplay, dx, dy, fEnabled, fNotifyGuest); 1762 return VINF_SUCCESS; 1753 1763 } 1754 1764 … … 2004 2014 pThis->IPortRamfb.pfnSetViewport = NULL; 2005 2015 pThis->IPortRamfb.pfnReportMonitorPositions = NULL; 2006 pThis->IPortRamfb.pfnSendModeHint = NULL;2016 pThis->IPortRamfb.pfnSendModeHint = qemuFwCfgR3RamfbPortSendModeHint; 2007 2017 pThis->IPortRamfb.pfnReportHostCursorCapabilities = qemuFwCfgR3RamfbPortReportHostCursorCapabilities; 2008 2018 pThis->IPortRamfb.pfnReportHostCursorPosition = qemuFwCfgR3RamfbPortReportHostCursorPosition;
Note:
See TracChangeset
for help on using the changeset viewer.