Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Add QgsSymbolLayer::canCauseArtifactsBetweenAdjacentTiles()
Returns true if the symbol layer rendering can cause visible artifacts across a single feature when the feature is rendered as a series of adjacent map tiles each containing a portion of the feature's geometry. This depends on the symbol layer derived class itself - eg a simple solid color fill won't show any artifacts, but a shapeburst fill WILL.
- Loading branch information
Showing
with
84 additions
and 46 deletions.
- +8 −23 python/core/auto_generated/symbology/qgsfillsymbollayer.sip.in
- +2 −0 python/core/auto_generated/symbology/qgslinesymbollayer.sip.in
- +10 −0 python/core/auto_generated/symbology/qgssymbollayer.sip.in
- +5 −0 src/core/symbology/qgsarrowsymbollayer.cpp
- +1 −0 src/core/symbology/qgsarrowsymbollayer.h
- +20 −0 src/core/symbology/qgsfillsymbollayer.cpp
- +4 −23 src/core/symbology/qgsfillsymbollayer.h
- +18 −0 src/core/symbology/qgslinesymbollayer.cpp
- +1 −0 src/core/symbology/qgslinesymbollayer.h
- +5 −0 src/core/symbology/qgssymbollayer.cpp
- +10 −0 src/core/symbology/qgssymbollayer.h