Home
last modified time | relevance | path

Searched refs:MapDebugOptions (Results 1 – 14 of 14) sorted by relevance

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/map/
H A Dmode.hpp33 enum class MapDebugOptions : EnumType { enum
47 MBGL_CONSTEXPR MapDebugOptions operator|(MapDebugOptions lhs, MapDebugOptions rhs) { in operator |()
48 return MapDebugOptions(mbgl::underlying_type(lhs) | mbgl::underlying_type(rhs)); in operator |()
51 MBGL_CONSTEXPR MapDebugOptions& operator|=(MapDebugOptions& lhs, MapDebugOptions rhs) { in operator |=()
52 return (lhs = MapDebugOptions(mbgl::underlying_type(lhs) | mbgl::underlying_type(rhs))); in operator |=()
55 MBGL_CONSTEXPR bool operator&(MapDebugOptions lhs, MapDebugOptions rhs) { in operator &()
59 MBGL_CONSTEXPR MapDebugOptions& operator&=(MapDebugOptions& lhs, MapDebugOptions rhs) { in operator &=()
60 return (lhs = MapDebugOptions(mbgl::underlying_type(lhs) & mbgl::underlying_type(rhs))); in operator &=()
63 MBGL_CONSTEXPR MapDebugOptions operator~(MapDebugOptions value) { in operator ~()
64 return MapDebugOptions(~mbgl::underlying_type(value)); in operator ~()
H A Dmap.hpp47 void renderStill(const CameraOptions&, MapDebugOptions, StillImageCallback);
165 void setDebug(MapDebugOptions);
167 MapDebugOptions getDebug() const;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/map/
H A Dmap.cpp77 MapDebugOptions debugOptions { MapDebugOptions::NoDebug };
172 void Map::renderStill(const CameraOptions& camera, MapDebugOptions debugOptions, StillImageCallback… in renderStill()
707 void Map::setDebug(MapDebugOptions debugOptions) { in setDebug()
714 if (impl->debugOptions & MapDebugOptions::StencilClip) in cycleDebugOptions()
715 impl->debugOptions = MapDebugOptions::NoDebug; in cycleDebugOptions()
716 else if (impl->debugOptions & MapDebugOptions::Overdraw) in cycleDebugOptions()
717 impl->debugOptions = MapDebugOptions::StencilClip; in cycleDebugOptions()
719 if (impl->debugOptions & MapDebugOptions::Overdraw) in cycleDebugOptions()
720 impl->debugOptions = MapDebugOptions::NoDebug; in cycleDebugOptions()
722 else if (impl->debugOptions & MapDebugOptions::Collision) in cycleDebugOptions()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/buckets/
H A Ddebug_bucket.cpp18 MapDebugOptions debugMode_, in DebugBucket()
62 if (debugMode & MapDebugOptions::ParseStatus) { in DebugBucket()
69 if (debugMode & MapDebugOptions::Timestamps && modified && expires) { in DebugBucket()
H A Ddebug_bucket.hpp27 MapDebugOptions,
34 const MapDebugOptions debugMode;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_tile.cpp71 if (!used || parameters.debugOptions == MapDebugOptions::NoDebug) in finishRender()
79 if (parameters.debugOptions & (MapDebugOptions::Timestamps | MapDebugOptions::ParseStatus)) { in finishRender()
139 if (parameters.debugOptions & MapDebugOptions::TileBorders) { in finishRender()
H A Dpaint_parameters.cpp30 …programs((debugOptions & MapDebugOptions::Overdraw) ? staticData_.overdrawPrograms : staticData_.p… in PaintParameters()
83 if (debugOptions & MapDebugOptions::Overdraw) { in colorModeForRenderPass()
H A Dtile_parameters.hpp17 const MapDebugOptions debugOptions;
H A Dupdate_parameters.hpp23 const MapDebugOptions debugOptions;
H A Dpaint_parameters.hpp50 MapDebugOptions debugOptions;
H A Drenderer_impl.cpp397 …RenderSymbolLayer>(), parameters.projMatrix, parameters.debugOptions & MapDebugOptions::Collision); in render()
470 if (parameters.debugOptions & MapDebugOptions::Overdraw) { in render()
525 if (parameters.debugOptions & MapDebugOptions::StencilClip) { in render()
608 if (parameters.debugOptions & MapDebugOptions::DepthBuffer) { in render()
H A Dtile_pyramid.cpp239 pair.second->setShowCollisionBoxes(parameters.debugOptions & MapDebugOptions::Collision); in update()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/tile/
H A Dgeometry_tile.cpp57 parameters.debugOptions & MapDebugOptions::Collision), in GeometryTile()
61 showCollisionBoxes(parameters.debugOptions & MapDebugOptions::Collision) { in GeometryTile()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/sources/
H A Drender_image_source.cpp54 if (!isLoaded() || !(parameters.debugOptions & MapDebugOptions::TileBorders)) { in finishRender()