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 D | mode.hpp | 33 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 D | map.hpp | 47 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 D | map.cpp | 77 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 D | debug_bucket.cpp | 18 MapDebugOptions debugMode_, in DebugBucket() 62 if (debugMode & MapDebugOptions::ParseStatus) { in DebugBucket() 69 if (debugMode & MapDebugOptions::Timestamps && modified && expires) { in DebugBucket()
|
| H A D | debug_bucket.hpp | 27 MapDebugOptions, 34 const MapDebugOptions debugMode;
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/ |
| H A D | render_tile.cpp | 71 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 D | paint_parameters.cpp | 30 …programs((debugOptions & MapDebugOptions::Overdraw) ? staticData_.overdrawPrograms : staticData_.p… in PaintParameters() 83 if (debugOptions & MapDebugOptions::Overdraw) { in colorModeForRenderPass()
|
| H A D | tile_parameters.hpp | 17 const MapDebugOptions debugOptions;
|
| H A D | update_parameters.hpp | 23 const MapDebugOptions debugOptions;
|
| H A D | paint_parameters.hpp | 50 MapDebugOptions debugOptions;
|
| H A D | renderer_impl.cpp | 397 …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 D | tile_pyramid.cpp | 239 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 D | geometry_tile.cpp | 57 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 D | render_image_source.cpp | 54 if (!isLoaded() || !(parameters.debugOptions & MapDebugOptions::TileBorders)) { in finishRender()
|