Changeset 28235 in vbox
- Timestamp:
- Apr 13, 2010 8:48:47 AM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Graphics/DevVGA.cpp
r28220 r28235 5395 5395 || yDst < 0 5396 5396 || xDst + wCorrected > u32DstWidth 5397 || yDst + hCorrected > u32 SrcHeight)5397 || yDst + hCorrected > u32DstHeight) 5398 5398 { 5399 5399 return VERR_INVALID_PARAMETER; -
trunk/src/VBox/Main/DisplayImpl.cpp
r28220 r28235 2418 2418 u32DstWidth, u32DstHeight, 2419 2419 u32DstLineSize, u32DstBitsPerPixel); 2420 if (RT_SUCCESS(rc)) 2421 { 2422 pDisplay->handleDisplayUpdate(x + pFBInfo->xOrigin, y + pFBInfo->yOrigin, width, height); 2423 } 2420 2424 } 2421 2425 else -
trunk/src/VBox/Main/idl/VirtualBox.xidl
r28227 r28235 11471 11471 <param name="screenId" type="unsigned long" dir="in"/> 11472 11472 <param name="address" type="octet" mod="ptr" dir="in"/> 11473 <param name="x" type="unsigned long" dir="in"/> 11474 <param name="y" type="unsigned long" dir="in"/> 11473 <param name="x" type="unsigned long" dir="in"> 11474 <desc>Relative to the screen top left corner.</desc> 11475 </param> 11476 <param name="y" type="unsigned long" dir="in"> 11477 <desc>Relative to the screen top left corner.</desc> 11478 </param> 11475 11479 <param name="width" type="unsigned long" dir="in"/> 11476 11480 <param name="height" type="unsigned long" dir="in"/>
Note:
See TracChangeset
for help on using the changeset viewer.