Put stb_image includes first in image reader order for linux

This commit is contained in:
Jonathan Grangien
2018-03-19 14:44:53 -04:00
committed by Matthias Berg
parent 00b37aaf0a
commit 4ddcc3bef2

View File

@@ -61,9 +61,14 @@
#include <ghoul/opengl/programobject.h>
#include <ghoul/systemcapabilities/openglcapabilitiescomponent.h>
#ifdef GHOUL_USE_STB_IMAGE
#include <ghoul/io/texture/texturereaderstb.h>
#endif // GHOUL_USE_STB_IMAGE
#ifdef GHOUL_USE_DEVIL
#include <ghoul/io/texture/texturereaderdevil.h>
#endif //GHOUL_USE_DEVIL
#ifdef GHOUL_USE_FREEIMAGE
#include <ghoul/io/texture/texturereaderfreeimage.h>
#endif // GHOUL_USE_FREEIMAGE
@@ -74,10 +79,6 @@
#include <ghoul/io/texture/texturewritersoil.h>
#endif //GHOUL_USE_SOIL
#ifdef GHOUL_USE_STB_IMAGE
#include <ghoul/io/texture/texturereaderstb.h>
#endif // GHOUL_USE_STB_IMAGE
#include <array>
#include <stack>