Home
last modified time | relevance | path

Searched refs:LineJoinType (Results 1 – 9 of 9) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dline_bucket.cpp92 const LineJoinType joinType = layout.evaluate<LineJoin>(zoom, feature); in addGeometry()
94 …const float miterLimit = joinType == LineJoinType::Bevel ? 1.05f : float(layout.get<LineMiterLimit… in addGeometry()
201 LineJoinType currentJoin = joinType; in addGeometry()
205 if (currentJoin == LineJoinType::Round) { in addGeometry()
207 currentJoin = LineJoinType::Miter; in addGeometry()
209 currentJoin = LineJoinType::FakeRound; in addGeometry()
213 if (currentJoin == LineJoinType::Miter && miterLength > miterLimit) { in addGeometry()
214 currentJoin = LineJoinType::Bevel; in addGeometry()
217 if (currentJoin == LineJoinType::Bevel) { in addGeometry()
221 currentJoin = LineJoinType::FlipBevel; in addGeometry()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dtypes.cpp54 MBGL_DEFINE_ENUM(LineJoinType, {
55 { LineJoinType::Miter, "miter" },
56 { LineJoinType::Bevel, "bevel" },
57 { LineJoinType::Round, "round" },
58 { LineJoinType::FakeRound, "fakeround" },
59 { LineJoinType::FlipBevel, "flipbevel" },
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dline_layer_properties.hpp20 struct LineJoin : DataDrivenLayoutProperty<LineJoinType> {
22 static LineJoinType defaultValue() { return LineJoinType::Miter; } in defaultValue()
H A Dline_layer.cpp113 DataDrivenPropertyValue<LineJoinType> LineLayer::getDefaultLineJoin() { in getDefaultLineJoin()
117 DataDrivenPropertyValue<LineJoinType> LineLayer::getLineJoin() const { in getLineJoin()
121 void LineLayer::setLineJoin(DataDrivenPropertyValue<LineJoinType> value) { in setLineJoin()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dline_layer.hpp45 static DataDrivenPropertyValue<LineJoinType> getDefaultLineJoin();
46 DataDrivenPropertyValue<LineJoinType> getLineJoin() const;
47 void setLineJoin(DataDrivenPropertyValue<LineJoinType>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/annotation/
H A Dline_annotation_impl.cpp21 newLayer->setLineJoin(LineJoinType::Round); in updateStyle()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dtypes.hpp32 enum class LineJoinType : uint8_t { enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp295 template type::Type valueTypeToExpressionType<LineJoinType>();
296 template struct ValueConverter<LineJoinType>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp30 …result["line-join"] = &setProperty<LineLayer, DataDrivenPropertyValue<LineJoinType>, &LineLayer::s… in makeLayoutPropertySetters()