Browse Source

Text: clean up include order.

pull/674/head
Vladimír Vondruš 1 year ago
parent
commit
2d1f9a23bf
  1. 5
      src/Magnum/Text/GlyphCacheGL.cpp

5
src/Magnum/Text/GlyphCacheGL.cpp

@ -32,18 +32,17 @@
#include "Magnum/Image.h" #include "Magnum/Image.h"
#include "Magnum/ImageView.h" #include "Magnum/ImageView.h"
#include "Magnum/GL/TextureFormat.h" #if (!defined(MAGNUM_TARGET_GLES) || (defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL))) || defined(MAGNUM_BUILD_DEPRECATED)
#ifdef MAGNUM_BUILD_DEPRECATED
#include "Magnum/PixelFormat.h" #include "Magnum/PixelFormat.h"
#endif #endif
#if !defined(MAGNUM_TARGET_GLES) || (defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)) #if !defined(MAGNUM_TARGET_GLES) || (defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL))
#include "Magnum/PixelFormat.h"
#include "Magnum/GL/Context.h" #include "Magnum/GL/Context.h"
#include "Magnum/GL/Extensions.h" #include "Magnum/GL/Extensions.h"
#endif #endif
#if defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL) #if defined(MAGNUM_TARGET_GLES2) && !defined(MAGNUM_TARGET_WEBGL)
#include "Magnum/GL/PixelFormat.h" #include "Magnum/GL/PixelFormat.h"
#endif #endif
#include "Magnum/GL/TextureFormat.h"
#include "Magnum/Text/Implementation/glyphCacheGLState.h" #include "Magnum/Text/Implementation/glyphCacheGLState.h"
namespace Magnum { namespace Text { namespace Magnum { namespace Text {

Loading…
Cancel
Save