| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/ |
| H A D | symbol_layer_properties.hpp | 45 struct IconRotationAlignment : LayoutProperty<AlignmentType> { 47 static AlignmentType defaultValue() { return AlignmentType::Auto; } in defaultValue() 95 struct IconPitchAlignment : LayoutProperty<AlignmentType> { 97 static AlignmentType defaultValue() { return AlignmentType::Auto; } in defaultValue() 100 struct TextPitchAlignment : LayoutProperty<AlignmentType> { 102 static AlignmentType defaultValue() { return AlignmentType::Auto; } in defaultValue() 105 struct TextRotationAlignment : LayoutProperty<AlignmentType> { 107 static AlignmentType defaultValue() { return AlignmentType::Auto; } in defaultValue()
|
| H A D | circle_layer_properties.hpp | 43 struct CirclePitchAlignment : PaintProperty<AlignmentType> { 44 static AlignmentType defaultValue() { return AlignmentType::Viewport; } in defaultValue()
|
| H A D | symbol_layer.cpp | 193 PropertyValue<AlignmentType> SymbolLayer::getDefaultIconRotationAlignment() { in getDefaultIconRotationAlignment() 197 PropertyValue<AlignmentType> SymbolLayer::getIconRotationAlignment() const { in getIconRotationAlignment() 201 void SymbolLayer::setIconRotationAlignment(PropertyValue<AlignmentType> value) { in setIconRotationAlignment() 353 PropertyValue<AlignmentType> SymbolLayer::getDefaultIconPitchAlignment() { in getDefaultIconPitchAlignment() 357 PropertyValue<AlignmentType> SymbolLayer::getIconPitchAlignment() const { in getIconPitchAlignment() 361 void SymbolLayer::setIconPitchAlignment(PropertyValue<AlignmentType> value) { in setIconPitchAlignment() 369 PropertyValue<AlignmentType> SymbolLayer::getDefaultTextPitchAlignment() { in getDefaultTextPitchAlignment() 373 PropertyValue<AlignmentType> SymbolLayer::getTextPitchAlignment() const { in getTextPitchAlignment() 377 void SymbolLayer::setTextPitchAlignment(PropertyValue<AlignmentType> value) { in setTextPitchAlignment() 385 PropertyValue<AlignmentType> SymbolLayer::getDefaultTextRotationAlignment() { in getDefaultTextRotationAlignment() [all …]
|
| H A D | circle_layer.cpp | 288 PropertyValue<AlignmentType> CircleLayer::getDefaultCirclePitchAlignment() { in getDefaultCirclePitchAlignment() 289 return { AlignmentType::Viewport }; in getDefaultCirclePitchAlignment() 292 PropertyValue<AlignmentType> CircleLayer::getCirclePitchAlignment() const { in getCirclePitchAlignment() 296 void CircleLayer::setCirclePitchAlignment(PropertyValue<AlignmentType> value) { in setCirclePitchAlignment()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/ |
| H A D | symbol_layer.hpp | 65 static PropertyValue<AlignmentType> getDefaultIconRotationAlignment(); 66 PropertyValue<AlignmentType> getIconRotationAlignment() const; 67 void setIconRotationAlignment(PropertyValue<AlignmentType>); 105 static PropertyValue<AlignmentType> getDefaultIconPitchAlignment(); 106 PropertyValue<AlignmentType> getIconPitchAlignment() const; 107 void setIconPitchAlignment(PropertyValue<AlignmentType>); 109 static PropertyValue<AlignmentType> getDefaultTextPitchAlignment(); 110 PropertyValue<AlignmentType> getTextPitchAlignment() const; 111 void setTextPitchAlignment(PropertyValue<AlignmentType>); 113 static PropertyValue<AlignmentType> getDefaultTextRotationAlignment(); [all …]
|
| H A D | circle_layer.hpp | 81 static PropertyValue<AlignmentType> getDefaultCirclePitchAlignment(); 82 PropertyValue<AlignmentType> getCirclePitchAlignment() const; 83 void setCirclePitchAlignment(PropertyValue<AlignmentType>);
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/ |
| H A D | types.cpp | 92 MBGL_DEFINE_ENUM(AlignmentType, { 93 { AlignmentType::Map, "map" }, 94 { AlignmentType::Viewport, "viewport" }, 95 { AlignmentType::Auto, "auto" },
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/programs/ |
| H A D | symbol_program.cpp | 50 if (values.pitchAlignment == AlignmentType::Map) { in makeValues() 60 const bool pitchWithMap = values.pitchAlignment == style::AlignmentType::Map; in makeValues() 61 const bool rotateWithMap = values.rotationAlignment == style::AlignmentType::Map; in makeValues() 137 const float gammaScale = (values.pitchAlignment == AlignmentType::Map in uniformValues()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/layout/ |
| H A D | symbol_layout.cpp | 59 if (layout.get<IconRotationAlignment>() == AlignmentType::Auto) { in SymbolLayout() 61 layout.get<IconRotationAlignment>() = AlignmentType::Map; in SymbolLayout() 63 layout.get<IconRotationAlignment>() = AlignmentType::Viewport; in SymbolLayout() 67 if (layout.get<TextRotationAlignment>() == AlignmentType::Auto) { in SymbolLayout() 69 layout.get<TextRotationAlignment>() = AlignmentType::Map; in SymbolLayout() 71 layout.get<TextRotationAlignment>() = AlignmentType::Viewport; in SymbolLayout() 76 if (layout.get<TextPitchAlignment>() == AlignmentType::Auto) { in SymbolLayout() 79 if (layout.get<IconPitchAlignment>() == AlignmentType::Auto) { in SymbolLayout() 119 … const bool canVerticalizeText = layout.get<TextRotationAlignment>() == AlignmentType::Map in SymbolLayout() 158 const bool textAlongLine = layout.get<TextRotationAlignment>() == AlignmentType::Map && in prepare() [all …]
|
| H A D | symbol_projection.cpp | 371 const bool pitchWithMap = values.pitchAlignment == style::AlignmentType::Map; in reprojectLineLabels() 372 const bool rotateWithMap = values.rotationAlignment == style::AlignmentType::Map; in reprojectLineLabels() 408 const float pitchScaledFontSize = values.pitchAlignment == style::AlignmentType::Map ? in reprojectLineLabels()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/layers/ |
| H A D | render_circle_layer.cpp | 56 const bool pitchWithMap = evaluated.get<CirclePitchAlignment>() == AlignmentType::Map; in render() 156 …lignWithMap = evaluated.evaluate<style::CirclePitchAlignment>(zoom, feature) == AlignmentType::Map; in queryIntersectsFeature() 172 … if (pitchScale == CirclePitchScaleType::Viewport && pitchAlignment == AlignmentType::Map) { in queryIntersectsFeature() 174 … } else if (pitchScale == CirclePitchScaleType::Map && pitchAlignment == AlignmentType::Viewport) { in queryIntersectsFeature()
|
| H A D | render_symbol_layer.hpp | 41 AlignmentType pitchAlignment; 42 AlignmentType rotationAlignment;
|
| H A D | render_symbol_layer.cpp | 116 values_.pitchAlignment == AlignmentType::Map in render() 137 layout.get<IconRotationAlignment>() == AlignmentType::Map; in render() 152 …const bool iconTransformed = values.rotationAlignment == AlignmentType::Map || parameters.state.ge… in render() 198 layout.get<TextRotationAlignment>() == AlignmentType::Map; in render()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/text/ |
| H A D | placement.cpp | 77 layout.get<style::TextPitchAlignment>() == style::AlignmentType::Map, in placeLayer() 78 layout.get<style::TextRotationAlignment>() == style::AlignmentType::Map, in placeLayer() 83 layout.get<style::IconPitchAlignment>() == style::AlignmentType::Map, in placeLayer() 84 layout.get<style::IconRotationAlignment>() == style::AlignmentType::Map, in placeLayer() 135 bucket.layout.get<style::TextPitchAlignment>() == style::AlignmentType::Map, in placeLayerBucket() 149 bucket.layout.get<style::IconPitchAlignment>() == style::AlignmentType::Map, in placeLayerBucket()
|
| H A D | quads.cpp | 120 …const bool alongLine = layout.get<TextRotationAlignment>() == AlignmentType::Map && placement != S… in getGlyphQuads()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/ |
| H A D | make_property_setters.hpp | 40 …result["icon-rotation-alignment"] = &setProperty<SymbolLayer, PropertyValue<AlignmentType>, &Symbo… in makeLayoutPropertySetters() 50 …result["icon-pitch-alignment"] = &setProperty<SymbolLayer, PropertyValue<AlignmentType>, &SymbolLa… in makeLayoutPropertySetters() 51 …result["text-pitch-alignment"] = &setProperty<SymbolLayer, PropertyValue<AlignmentType>, &SymbolLa… in makeLayoutPropertySetters() 52 …result["text-rotation-alignment"] = &setProperty<SymbolLayer, PropertyValue<AlignmentType>, &Symbo… in makeLayoutPropertySetters() 162 …result["circle-pitch-alignment"] = &setProperty<CircleLayer, PropertyValue<AlignmentType>, &Circle… in makePaintPropertySetters()
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/ |
| H A D | types.hpp | 72 enum class AlignmentType : uint8_t { enum
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/expression/ |
| H A D | value.cpp | 283 template type::Type valueTypeToExpressionType<AlignmentType>(); 284 template struct ValueConverter<AlignmentType>;
|