-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor: name changes and member variable fixes
- Loading branch information
1 parent
782d722
commit e87f5a5
Showing
9 changed files
with
43 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -139,4 +139,4 @@ void Geodesic_arcs::draw() | |
} | ||
} | ||
glBindVertexArray(0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,4 +73,4 @@ void World_coord_axes::draw() | |
glDrawArrays(GL_LINES, 0, count); | ||
} | ||
glBindVertexArray(0); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,14 +5,14 @@ | |
// | ||
// SPDX-License-Identifier: LGPL-3.0-or-later OR LicenseRef-Commercial | ||
// | ||
// Author(s): Deniz Diktas <[email protected]> | ||
// Author(s): Engin Deniz Diktas <[email protected]> | ||
|
||
#include <QApplication> | ||
#include <QLabel> | ||
#include <QSurfaceFormat> | ||
|
||
#ifndef QT_NO_OPENGL | ||
#include "mainwidget.h" | ||
#include "Main_widget.h" | ||
#endif | ||
|
||
|
||
|
@@ -32,7 +32,7 @@ int main(int argc, char* argv[]) | |
app.setApplicationName("Earth"); | ||
app.setApplicationVersion("0.1"); | ||
#ifndef QT_NO_OPENGL | ||
MainWidget widget; | ||
Main_widget widget; | ||
widget.show(); | ||
#else | ||
QLabel note("OpenGL Support required"); | ||
|