Changeset 19798 in vbox for trunk/src/VBox/Main/idl
- Timestamp:
- May 18, 2009 3:50:20 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47438
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r19695 r19798 10248 10248 10249 10249 <enum 10250 name="FramebufferAccelerationOperation"10251 uuid="f0e5ebbe-dc8e-4e2d-916e-53baa3844df8"10252 >10253 <desc>10254 Frame buffer acceleration operation.10255 </desc>10256 10257 <const name="SolidFillAcceleration" value="1"/>10258 <const name="ScreenCopyAcceleration" value="2"/>10259 </enum>10260 10261 <enum10262 10250 name="FramebufferPixelFormat" 10263 10251 uuid="7acfd5ed-29e3-45e3-8136-73c9224f3d2d" … … 10288 10276 <interface 10289 10277 name="IFramebuffer" extends="$unknown" 10290 uuid=" af431304-5b09-40e2-94da-3c3cb03822c1"10278 uuid="3ce29e6d-835a-4283-8ee0-eb9971b81d81" 10291 10279 wsmap="suppress" 10292 10280 > … … 10519 10507 </method> 10520 10508 10521 <method name="operationSupported">10522 <desc>10523 Returns whether the given acceleration operation is supported10524 by the IFramebuffer implementation. If not, the display object10525 will not attempt to call the corresponding IFramebuffer entry10526 point. Even if an operation is indicated as supported, the10527 IFramebuffer implementation always has the option to return non10528 supported from the corresponding acceleration method in which10529 case the operation will be performed by the display engine. This10530 allows for reduced IFramebuffer implementation complexity where10531 only common cases are handled.10532 </desc>10533 <param name="operation" type="FramebufferAccelerationOperation" dir="in"/>10534 <param name="supported" type="boolean" dir="return"/>10535 </method>10536 10537 10509 <method name="videoModeSupported"> 10538 10510 <desc> … … 10549 10521 <param name="bpp" type="unsigned long" dir="in"/> 10550 10522 <param name="supported" type="boolean" dir="return"/> 10551 </method>10552 10553 <method name="solidFill">10554 <desc>10555 Fills the specified rectangle on screen with a solid color.10556 </desc>10557 <param name="x" type="unsigned long" dir="in"/>10558 <param name="y" type="unsigned long" dir="in"/>10559 <param name="width" type="unsigned long" dir="in"/>10560 <param name="height" type="unsigned long" dir="in"/>10561 <param name="color" type="unsigned long" dir="in"/>10562 <param name="handled" type="boolean" dir="return"/>10563 </method>10564 10565 <method name="copyScreenBits">10566 <desc>10567 Copies specified rectangle on the screen.10568 </desc>10569 <param name="xDst" type="unsigned long" dir="in"/>10570 <param name="yDst" type="unsigned long" dir="in"/>10571 <param name="xSrc" type="unsigned long" dir="in"/>10572 <param name="ySrc" type="unsigned long" dir="in"/>10573 <param name="width" type="unsigned long" dir="in"/>10574 <param name="height" type="unsigned long" dir="in"/>10575 <param name="handled" type="boolean" dir="return"/>10576 10523 </method> 10577 10524
Note:
See TracChangeset
for help on using the changeset viewer.