Changeset 57191 in vbox for trunk/src/VBox/Devices/Graphics
- Timestamp:
- Aug 5, 2015 12:22:01 PM (9 years ago)
- Location:
- trunk/src/VBox/Devices/Graphics
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp
r57151 r57191 536 536 537 537 /** 538 * Inform the VGA device of viewport changes (as a result of e.g. scrolling) 539 * 540 * @param pInterface Pointer to this interface. 541 * @param 542 * @param uScreenId The screen updates are for. 543 * @param x The upper left corner x coordinate of the new viewport rectangle 544 * @param y The upper left corner y coordinate of the new viewport rectangle 545 * @param cx The width of the new viewport rectangle 546 * @param cy The height of the new viewport rectangle 547 * @thread The emulation thread. 538 * @interface_method_impl{PDMIDISPLAYPORT::pfnSetViewport} 548 539 */ 549 DECLCALLBACK(void) vmsvgaPortSetView Port(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)540 DECLCALLBACK(void) vmsvgaPortSetViewport(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) 550 541 { 551 542 PVGASTATE pThis = RT_FROM_MEMBER(pInterface, VGASTATE, IPort); -
trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h
r56292 r57191 36 36 DECLCALLBACK(int) vmsvgaR3IORegionMap(PPCIDEVICE pPciDev, int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType); 37 37 38 DECLCALLBACK(void) vmsvgaPortSetView Port(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);38 DECLCALLBACK(void) vmsvgaPortSetViewport(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy); 39 39 40 40 int vmsvgaInit(PPDMDEVINS pDevIns); -
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r57088 r57191 6113 6113 pThis->IPort.pfnSetRenderVRAM = vgaPortSetRenderVRAM; 6114 6114 #ifdef VBOX_WITH_VMSVGA 6115 pThis->IPort.pfnSetViewPort = vmsvgaPortSetViewPort; 6115 pThis->IPort.pfnSetViewport = vmsvgaPortSetViewport; 6116 #else 6117 pThis->IPort.pfnSetViewport = NULL; 6116 6118 #endif 6117 6119 pThis->IPort.pfnSendModeHint = vbvaPortSendModeHint;
Note:
See TracChangeset
for help on using the changeset viewer.