Merge branch 'master' into feature/getting-started-tour

# Conflicts:
#	modules/skybrowser/skybrowsermodule.cpp
This commit is contained in:
Ylva Selling
2022-06-29 05:21:45 -04:00
216 changed files with 1007 additions and 547 deletions
@@ -41,7 +41,7 @@ namespace documentation { struct Documentation; }
class DashboardItemGlobeLocation : public DashboardItem {
public:
DashboardItemGlobeLocation(const ghoul::Dictionary& dictionary);
~DashboardItemGlobeLocation() = default;
~DashboardItemGlobeLocation() override = default;
void render(glm::vec2& penPosition) override;
+1 -1
View File
@@ -55,7 +55,7 @@ public:
private:
GdalWrapper(size_t maximumCacheSize, size_t maximumMaximumCacheSize);
~GdalWrapper() = default;
~GdalWrapper() override = default;
void setGdalProxyConfiguration();
@@ -50,7 +50,7 @@ namespace globebrowsing { class RenderableGlobe; }
class GlobeLabelsComponent : public properties::PropertyOwner {
public:
GlobeLabelsComponent();
~GlobeLabelsComponent() = default;
~GlobeLabelsComponent() override = default;
void initialize(const ghoul::Dictionary& dictionary,
globebrowsing::RenderableGlobe* globe);
+1 -1
View File
@@ -39,7 +39,7 @@ namespace openspace::globebrowsing {
class LayerAdjustment : public properties::PropertyOwner {
public:
LayerAdjustment();
~LayerAdjustment() = default;
~LayerAdjustment() override = default;
void setValuesFromDictionary(const ghoul::Dictionary& adjustmentDict);
+1 -1
View File
@@ -95,7 +95,7 @@ enum class ShadowCompType {
class RenderableGlobe : public Renderable {
public:
RenderableGlobe(const ghoul::Dictionary& dictionary);
~RenderableGlobe() = default;
~RenderableGlobe() override = default;
void initializeGL() override;
void deinitialize() override;
+1 -1
View File
@@ -47,7 +47,7 @@ struct TileLoadJob : public Job<RawTile> {
* Destroys the allocated data pointer if it has been allocated and the TileLoadJob
* has ownership of it.
*/
~TileLoadJob();
~TileLoadJob() override;
/**
* If the TileLoadJob has been created using PBO, this is the address that the
@@ -65,7 +65,7 @@ private:
struct InterpolateTileProvider : public TileProvider {
InterpolateTileProvider(const ghoul::Dictionary&);
virtual ~InterpolateTileProvider();
~InterpolateTileProvider() override;
Tile tile(const TileIndex& tileIndex) override final;
Tile::Status tileStatus(const TileIndex& index) override final;
@@ -32,7 +32,7 @@ namespace openspace::globebrowsing {
class TextTileProvider : public TileProvider {
public:
TextTileProvider(TileTextureInitData initData, size_t fontSize = 48);
virtual ~TextTileProvider();
~TextTileProvider() override;
void reset() override;
@@ -80,7 +80,7 @@ struct TileProvider : public properties::PropertyOwner {
static void deinitializeDefaultTile();
TileProvider();
virtual ~TileProvider() = default;
~TileProvider() override = default;
void initialize();
void deinitialize();