Changeset 27965 in vbox
- Timestamp:
- Apr 2, 2010 5:46:29 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdmifs.h
r27806 r27965 552 552 553 553 /** 554 * Render a rectangle from guest VRAM to Framebuffer .554 * Render a rectangle from guest VRAM to Framebuffer, multi-display variant. 555 555 * 556 556 * @param pInterface Pointer to this interface. … … 559 559 * @param cx The width of the rectangle to be updated. 560 560 * @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. 561 571 * @thread The emulation thread. 562 572 */ 563 573 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)); 566 576 567 577 } PDMIDISPLAYPORT;
Note:
See TracChangeset
for help on using the changeset viewer.