Ignore:
Timestamp:
Aug 2, 2010, 9:27:30 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.6.3 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/doc/src/howtos/openvg.qdoc

    r651 r769  
    173173
    174174    The other members of QPainter::CompositionMode are not supported
    175     because OpenVG 1.1 does not have an equivalent in its \c VGBlendMode
    176     enumeration.  Any attempt to set an unsupported mode will result in
     175    unless the \c{VG_KHR_advanced_blending} extension is present,
     176    in which case the following additional modes are supported:
     177
     178    \list
     179    \o QPainter::CompositionMode_Overlay
     180    \o QPainter::CompositionMode_ColorDodge
     181    \o QPainter::CompositionMode_ColorBurn
     182    \o QPainter::CompositionMode_HardLight
     183    \o QPainter::CompositionMode_SoftLight
     184    \o QPainter::CompositionMode_Difference
     185    \o QPainter::CompositionMode_Exclusion
     186    \o QPainter::CompositionMode_SourceOut
     187    \o QPainter::CompositionMode_DestinationOut
     188    \o QPainter::CompositionMode_SourceAtop
     189    \o QPainter::CompositionMode_DestinationAtop
     190    \o QPainter::CompositionMode_Xor
     191    \endlist
     192
     193    Any attempt to set an unsupported mode will result in
    177194    the actual mode being set to QPainter::CompositionMode_SourceOver.
    178195    Client applications should avoid using unsupported modes.
     
    296313    using OpenVG operations.
    297314
     315    \section2 Scrolling
     316
     317    By default, accelerated scrolling is not enabled because the impact on
     318    performance is very much tied to the hardware platform. To enable
     319    accelerated scrolling, you should ensure that QVG_BUFFER_SCROLLING is
     320    defined when compiling the QtOpenVG module.
     321
     322    You should only enable this feature if vgCopyPixels() is known to be
     323    efficient on your hardware platform.
     324
    298325    \section1 Known issues
    299326
Note: See TracChangeset for help on using the changeset viewer.