VirtualBox

Changeset 27965 in vbox


Ignore:
Timestamp:
Apr 2, 2010 5:46:29 PM (15 years ago)
Author:
vboxsync
Message:

pdmifs.h: Cooked up some PDMIDISPLAYPORT::pfnUpdateDisplayRectEx docs and simplified the hungarian bits.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/pdmifs.h

    r27806 r27965  
    552552
    553553    /**
    554      * Render a rectangle from guest VRAM to Framebuffer.
     554     * Render a rectangle from guest VRAM to Framebuffer, multi-display variant.
    555555     *
    556556     * @param   pInterface          Pointer to this interface.
     
    559559     * @param   cx                  The width of the rectangle to be updated.
    560560     * @param   cy                  The height of the rectangle to be updated.
     561     * @param   pbSrcVRAM           Pointer to VRAM.
     562     * @param   cxSrc               The width of the source display.
     563     * @param   cySrc               The height of the source display.
     564     * @param   cbSrcLine           The line length of the source display.
     565     * @param   cSrcBitsPerPixel    The pixel depth of the source.
     566     * @param   pbDstBuffer         Destination buffer (framebuffer).
     567     * @param   cxDst               The width of the destination frame buffer.
     568     * @param   cyDst               The height of the destination frame buffer.
     569     * @param   cbDstLine           The line length of the destination frame buffer.
     570     * @param   cDstBitsPerPixel    The pixel depth of the destination.
    561571     * @thread  The emulation thread.
    562572     */
    563573    DECLR3CALLBACKMEMBER(void, pfnUpdateDisplayRectEx,(PPDMIDISPLAYPORT pInterface, int32_t x, int32_t y, uint32_t cx, uint32_t cy,
    564                                                        const uint8_t *pu8SrcVRAM, uint32_t u32SrcWidth, uint32_t u32SrcHeight, uint32_t u32SrcLineSize, uint32_t u32SrcBitsPerPixel,
    565                                                        uint8_t *pu8DstBuffer, uint32_t u32DstWidth, uint32_t u32DstHeight, uint32_t u32DstLineSize, uint32_t u32DstBitsPerPixel));
     574        const uint8_t *pbSrcVRAM, uint32_t cxSrc, uint32_t cySrc, uint32_t cbSrcLine, uint32_t cSrcBitsPerPixel,
     575        uint8_t     *pbDstBuffer, uint32_t cxDst, uint32_t cyDst, uint32_t cbDstLine, uint32_t cDstBitsPerPixel));
    566576
    567577} PDMIDISPLAYPORT;
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