Skip to content

Commit

Permalink
Fix order of #includes
Browse files Browse the repository at this point in the history
  • Loading branch information
garbear authored and gusandrianos committed Sep 2, 2019
1 parent 21295ac commit f5e103b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions xbmc/cores/RetroPlayer/shaders/gl/ShaderGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@

#include "ShaderGL.h"
#include "ShaderTextureGL.h"
#include "Application.h"
#include "ShaderUtilsGL.h"
#include "cores/RetroPlayer/rendering/RenderContext.h"
#include "cores/RetroPlayer/shaders/IShaderLut.h"
#include "rendering/gl/RenderSystemGL.h"
#include "utils/log.h"
#include "utils/URIUtils.h"
#include "ShaderUtilsGL.h"
#include "Application.h"

using namespace KODI;
using namespace SHADER;
Expand Down
2 changes: 1 addition & 1 deletion xbmc/cores/RetroPlayer/shaders/gl/ShaderGL.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
#include "ShaderTextureGL.h"
#include "cores/RetroPlayer/shaders/IShader.h"
#include "cores/RetroPlayer/shaders/gl/ShaderTypesGL.h"
#include "rendering/gl/GLShader.h"
#include "guilib/TextureGL.h"
#include "rendering/gl/GLShader.h"

#include <stdint.h>

Expand Down
4 changes: 2 additions & 2 deletions xbmc/cores/RetroPlayer/shaders/gl/ShaderPresetGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
#include "cores/RetroPlayer/rendering/RenderContext.h"
#include "cores/RetroPlayer/shaders/ShaderPresetFactory.h"
#include "cores/RetroPlayer/shaders/gl/ShaderGL.h"
#include "rendering/gl/RenderSystemGL.h"
#include "utils/log.h"
#include "ServiceBroker.h"
#include <xbmc/utils/log.h>

#include <regex>
#include <xbmc/rendering/gl/RenderSystemGL.h>

#define MAX_FLOAT 3.402823466E+38

Expand Down
2 changes: 1 addition & 1 deletion xbmc/cores/RetroPlayer/shaders/gl/ShaderTextureGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
* See LICENSES/README.md for more information.
*/

#include <xbmc/utils/log.h>
#include "ShaderTextureGL.h"
#include "utils/log.h"

using namespace KODI;
using namespace SHADER;
Expand Down
3 changes: 2 additions & 1 deletion xbmc/cores/RetroPlayer/shaders/gl/ShaderUtilsGL.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
* See LICENSES/README.md for more information.
*/

#include "ShaderUtilsGL.h"

#include <fstream>
#include <sstream>
#include "ShaderUtilsGL.h"

using namespace KODI;
using namespace SHADER;
Expand Down

0 comments on commit f5e103b

Please sign in to comment.