Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dtypes.cpp48 MBGL_DEFINE_ENUM(LineCapType, {
49 { LineCapType::Round, "round" },
50 { LineCapType::Butt, "butt" },
51 { LineCapType::Square, "square" },
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dline_layer_properties.hpp15 struct LineCap : LayoutProperty<LineCapType> {
17 static LineCapType defaultValue() { return LineCapType::Butt; } in defaultValue()
H A Dline_layer.cpp97 PropertyValue<LineCapType> LineLayer::getDefaultLineCap() { in getDefaultLineCap()
101 PropertyValue<LineCapType> LineLayer::getLineCap() const { in getLineCap()
105 void LineLayer::setLineCap(PropertyValue<LineCapType> value) { in setLineCap()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Dline_bucket.cpp99 const LineCapType beginCap = layout.get<LineCap>(); in addGeometry()
100 …const LineCapType endCap = type == FeatureType::Polygon ? LineCapType::Butt : LineCapType(layout.g… in addGeometry()
202 const LineCapType currentCap = nextCoordinate ? beginCap : endCap; in addGeometry()
308 } else if (!middleVertex && currentCap == LineCapType::Butt) { in addGeometry()
321 } else if (!middleVertex && currentCap == LineCapType::Square) { in addGeometry()
337 … } else if (middleVertex ? currentJoin == LineJoinType::Round : currentCap == LineCapType::Round) { in addGeometry()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dline_layer.hpp41 static PropertyValue<LineCapType> getDefaultLineCap();
42 PropertyValue<LineCapType> getLineCap() const;
43 void setLineCap(PropertyValue<LineCapType>);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dtypes.hpp26 enum class LineCapType : uint8_t { enum
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/
H A Dvalue.cpp292 template type::Type valueTypeToExpressionType<LineCapType>();
293 template struct ValueConverter<LineCapType>;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/
H A Drender_line_layer.cpp101 const LinePatternCap cap = bucket.layout.get<LineCap>() == LineCapType::Round in render()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dmake_property_setters.hpp29 … result["line-cap"] = &setProperty<LineLayer, PropertyValue<LineCapType>, &LineLayer::setLineCap>; in makeLayoutPropertySetters()