Compare commits

..

No commits in common. "df795482b50b8e12e394faed1db75e898a293b9c" and "64bc82007b52f162d8b26fd80c796b90868bc96c" have entirely different histories.

2 changed files with 2 additions and 3 deletions

View file

@ -1,5 +1,5 @@
#include "rendering/shader.h"
#include "rendering/texture.h"
#include "rendering/texture3d.h"
#include "timeutil.h"
#include <GL/glew.h>
#include <GL/gl.h>
@ -7,7 +7,7 @@
#include <string>
extern int viewportWidth, viewportHeight;
extern Texture* fontTexture;
extern Texture3D* fontTexture;
extern Shader* fontShader;
extern Shader* identityShader;

View file

@ -3,7 +3,6 @@
#include <qdialogbuttonbox.h>
#include <qnamespace.h>
#include <qplaintextedit.h>
#include <qfile.h>
class LicenseDialog : public QDialog {
public: