Changeset 38514 in vbox
- Timestamp:
- Aug 24, 2011 1:19:15 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA_VBVA.cpp
r35346 r38514 1803 1803 int64_t offEnd = (int64_t)pScreen->u32Height * pScreen->u32LineSize 1804 1804 + pScreen->u32Width + pScreen->u32StartOffset; 1805 Log FlowFunc(("VBVA_INFO_SCREEN: [%d] @%d,%d %dx%d, line 0x%x, BPP %d, flags 0x%x\n",1806 pScreen->u32ViewIndex, pScreen->i32OriginX, pScreen->i32OriginY,1807 pScreen->u32Width, pScreen->u32Height,1808 pScreen->u32LineSize, pScreen->u16BitsPerPixel, pScreen->u16Flags));1805 LogRelFlowFunc(("VBVA_INFO_SCREEN: [%d] @%d,%d %dx%d, line 0x%x, BPP %d, flags 0x%x\n", 1806 pScreen->u32ViewIndex, pScreen->i32OriginX, pScreen->i32OriginY, 1807 pScreen->u32Width, pScreen->u32Height, 1808 pScreen->u32LineSize, pScreen->u16BitsPerPixel, pScreen->u16Flags)); 1809 1809 1810 1810 if ( pScreen->u32ViewIndex < RT_ELEMENTS (pCtx->aViews) … … 1819 1819 else 1820 1820 { 1821 Log (("VBVA_INFO_SCREEN [%lu]: bad data: %lux%lu, line 0x%lx, BPP %u, start offset %lu, max screen size %lu\n",1822 (unsigned long)pScreen->u32ViewIndex,1823 (unsigned long)pScreen->u32Width,1824 (unsigned long)pScreen->u32Height,1825 (unsigned long)pScreen->u32LineSize,1826 (unsigned long)pScreen->u16BitsPerPixel,1827 (unsigned long)pScreen->u32StartOffset,1828 (unsigned long)pView->u32MaxScreenSize));1821 LogRelFlow(("VBVA_INFO_SCREEN [%lu]: bad data: %lux%lu, line 0x%lx, BPP %u, start offset %lu, max screen size %lu\n", 1822 (unsigned long)pScreen->u32ViewIndex, 1823 (unsigned long)pScreen->u32Width, 1824 (unsigned long)pScreen->u32Height, 1825 (unsigned long)pScreen->u32LineSize, 1826 (unsigned long)pScreen->u16BitsPerPixel, 1827 (unsigned long)pScreen->u32StartOffset, 1828 (unsigned long)pView->u32MaxScreenSize)); 1829 1829 rc = VERR_INVALID_PARAMETER; 1830 1830 }
Note:
See TracChangeset
for help on using the changeset viewer.