VirtualBox

Changeset 57191 in vbox for trunk/src/VBox/Devices/Graphics


Ignore:
Timestamp:
Aug 5, 2015 12:22:01 PM (9 years ago)
Author:
vboxsync
Message:

pdmifs.h: ViewPort -> Viewport, docs.

Location:
trunk/src/VBox/Devices/Graphics
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.cpp

    r57151 r57191  
    536536
    537537/**
    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}
    548539 */
    549 DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
     540DECLCALLBACK(void) vmsvgaPortSetViewport(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy)
    550541{
    551542    PVGASTATE pThis = RT_FROM_MEMBER(pInterface, VGASTATE, IPort);
  • trunk/src/VBox/Devices/Graphics/DevVGA-SVGA.h

    r56292 r57191  
    3636DECLCALLBACK(int) vmsvgaR3IORegionMap(PPCIDEVICE pPciDev, int iRegion, RTGCPHYS GCPhysAddress, uint32_t cb, PCIADDRESSSPACE enmType);
    3737
    38 DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
     38DECLCALLBACK(void) vmsvgaPortSetViewport(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
    3939
    4040int vmsvgaInit(PPDMDEVINS pDevIns);
  • trunk/src/VBox/Devices/Graphics/DevVGA.cpp

    r57088 r57191  
    61136113    pThis->IPort.pfnSetRenderVRAM       = vgaPortSetRenderVRAM;
    61146114#ifdef VBOX_WITH_VMSVGA
    6115     pThis->IPort.pfnSetViewPort         = vmsvgaPortSetViewPort;
     6115    pThis->IPort.pfnSetViewport         = vmsvgaPortSetViewport;
     6116#else
     6117    pThis->IPort.pfnSetViewport         = NULL;
    61166118#endif
    61176119    pThis->IPort.pfnSendModeHint        = vbvaPortSendModeHint;
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette