diff options
author | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-06-10 04:37:54 (GMT) |
---|---|---|
committer | Kurt Korbatits <kurt.korbatits@nokia.com> | 2010-06-10 04:37:54 (GMT) |
commit | b2cfa7ceaba6f6aef3f9d01f82f8aba95ba45cd6 (patch) | |
tree | c84ba40e7e2b5505d4c46a1f144529b0d05f9769 /doc/src | |
parent | a4df1784086ee086e64b35fc1d2df827704708be (diff) | |
parent | be68f6960f7665c715ea4cca90c2ea4ccae1e0fa (diff) | |
download | Qt-b2cfa7ceaba6f6aef3f9d01f82f8aba95ba45cd6.zip Qt-b2cfa7ceaba6f6aef3f9d01f82f8aba95ba45cd6.tar.gz Qt-b2cfa7ceaba6f6aef3f9d01f82f8aba95ba45cd6.tar.bz2 |
Merge branch '4.6' of scm.dev.nokia.troll.no:qt/qt-multimedia-staging into 4.6
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/howtos/openvg.qdoc | 5 | ||||
-rw-r--r-- | doc/src/platforms/emb-openvg.qdocinc | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/doc/src/howtos/openvg.qdoc b/doc/src/howtos/openvg.qdoc index e448d9c..f4a34cd 100644 --- a/doc/src/howtos/openvg.qdoc +++ b/doc/src/howtos/openvg.qdoc @@ -262,7 +262,10 @@ The QVG_SCISSOR_CLIP define will disable clipping with vgMask() or vgRenderToMask() and instead use the scissor rectangle list to perform - clipping. Clipping with an arbitrary QPainterPath will not be supported. + clipping. Clipping with an arbitrary QPainterPath will need to convert + the path into a series of rectangles. If the number of rectangles + exceeds VG_MAX_SCISSOR_RECTS, then the results will not be exact. + The QVG_SCISSOR_CLIP define should only be used if the OpenVG engine does not support vgMask() or vgRenderToMask(). diff --git a/doc/src/platforms/emb-openvg.qdocinc b/doc/src/platforms/emb-openvg.qdocinc index 579af67..877d70c 100644 --- a/doc/src/platforms/emb-openvg.qdocinc +++ b/doc/src/platforms/emb-openvg.qdocinc @@ -225,7 +225,9 @@ The QVG_NO_RENDER_TO_MASK define will disable the use of vgRenderToMask(). The QVG_SCISSOR_CLIP define will disable clipping with vgMask() or vgRenderToMask() and instead use the scissor rectangle list to perform -clipping. Clipping with an arbitrary QPainterPath will not be supported. +clipping. Clipping with an arbitrary QPainterPath will need to convert +the path into a series of rectangles. If the number of rectangles +exceeds VG_MAX_SCISSOR_RECTS, then the results will not be exact. The QVG_SCISSOR_CLIP define should only be used if the OpenVG engine does not support vgMask() or vgRenderToMask(). |