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 D | line_bucket.cpp | 92 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 D | types.cpp | 54 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 D | line_layer_properties.hpp | 20 struct LineJoin : DataDrivenLayoutProperty<LineJoinType> { 22 static LineJoinType defaultValue() { return LineJoinType::Miter; } in defaultValue()
|
| H A D | line_layer.cpp | 113 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 D | line_layer.hpp | 45 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 D | line_annotation_impl.cpp | 21 newLayer->setLineJoin(LineJoinType::Round); in updateStyle()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | types.hpp | 32 enum class LineJoinType : uint8_t { enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | value.cpp | 295 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 D | make_property_setters.hpp | 30 …result["line-join"] = &setProperty<LineLayer, DataDrivenPropertyValue<LineJoinType>, &LineLayer::s… in makeLayoutPropertySetters()
|