mirror of
https://github.com/lubosz/overte.git
synced 2025-04-24 03:53:52 +02:00
Fixing header order and code style
This commit is contained in:
parent
1745ba9a7e
commit
02f2f1c1bf
1 changed files with 4 additions and 3 deletions
|
@ -9,8 +9,6 @@
|
|||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include "TextRenderer.h"
|
||||
#include "MatrixStack.h"
|
||||
|
||||
#include <gpu/GPUConfig.h>
|
||||
#include <QApplication>
|
||||
|
@ -36,6 +34,9 @@
|
|||
#include "FontRoboto.h"
|
||||
#include "FontTimeless.h"
|
||||
#include "FontCourierPrime.h"
|
||||
#include "MatrixStack.h"
|
||||
|
||||
#include "TextRenderer.h"
|
||||
|
||||
namespace Shaders {
|
||||
// Normally we could use 'enum class' to avoid namespace pollution,
|
||||
|
@ -231,7 +232,7 @@ public:
|
|||
float maxWidth) const;
|
||||
};
|
||||
|
||||
static QHash<QString, Font*> LOADED_FONTS;
|
||||
static QHash<QString, Font *> LOADED_FONTS;
|
||||
|
||||
Font * loadFont(QIODevice & buffer) {
|
||||
Font * result = new Font();
|
||||
|
|
Loading…
Reference in a new issue