diff options
author | Ryan Hamley <rshamley@gmail.com> | 2018-10-18 12:14:52 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-18 12:14:52 -0700 |
commit | 0c6b1629efb85386c0197868b2764c14f3fba940 (patch) | |
tree | ae6b98f5fc0fe5d6148e350d992736e180a9898c /test | |
parent | 201db67ee8d2368f6ca22753799af3101832ea35 (diff) | |
download | qtlocation-mapboxgl-0c6b1629efb85386c0197868b2764c14f3fba940.tar.gz |
[Core] Ensure queryRenderedFeatures accounts for icon-rotate (#13105)
Diffstat (limited to 'test')
-rw-r--r-- | test/text/cross_tile_symbol_index.test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/text/cross_tile_symbol_index.test.cpp b/test/text/cross_tile_symbol_index.test.cpp index 866e79729c..67f82413b2 100644 --- a/test/text/cross_tile_symbol_index.test.cpp +++ b/test/text/cross_tile_symbol_index.test.cpp @@ -11,7 +11,7 @@ SymbolInstance makeSymbolInstance(float x, float y, std::u16string key) { style::SymbolLayoutProperties::Evaluated layout_; IndexedSubfeature subfeature(0, "", "", 0); Anchor anchor(x, y, 0, 0); - return {anchor, line, shaping, {}, layout_, 0, 0, 0, style::SymbolPlacementType::Point, {{0, 0}}, 0, 0, {{0, 0}}, positions, subfeature, 0, 0, key, 0 }; + return {anchor, line, shaping, {}, layout_, 0, 0, 0, style::SymbolPlacementType::Point, {{0, 0}}, 0, 0, {{0, 0}}, positions, subfeature, 0, 0, key, 0, 0}; } |