mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-04-23 12:39:24 -05:00
Merge branch 'master' into feature/getting-started-tour
# Conflicts: # modules/skybrowser/skybrowsermodule.cpp
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user