From 2afe2152712981e21d6bda6f029292ed2b1cf91e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 17 Feb 2014 05:18:15 -0500 Subject: Convert all includes to relative paths. --- Source/Core/VideoBackends/Software/DebugUtil.cpp | 28 +++++++++++++----------- 1 file changed, 15 insertions(+), 13 deletions(-) (limited to 'Source/Core/VideoBackends/Software/DebugUtil.cpp') diff --git a/Source/Core/VideoBackends/Software/DebugUtil.cpp b/Source/Core/VideoBackends/Software/DebugUtil.cpp index 75c6c08ada..80259a4576 100644 --- a/Source/Core/VideoBackends/Software/DebugUtil.cpp +++ b/Source/Core/VideoBackends/Software/DebugUtil.cpp @@ -2,19 +2,21 @@ // Licensed under GPLv2 // Refer to the license.txt file included. -#include "Common.h" - -#include "DebugUtil.h" -#include "BPMemLoader.h" -#include "TextureSampler.h" -#include "SWVideoConfig.h" -#include "EfbInterface.h" -#include "SWStatistics.h" -#include "HwRasterizer.h" -#include "StringUtil.h" -#include "SWCommandProcessor.h" -#include "ImageWrite.h" -#include "FileUtil.h" +#include "Common/Common.h" +#include "Common/FileUtil.h" +#include "Common/StringUtil.h" + +#include "VideoBackends/Software/BPMemLoader.h" +#include "VideoBackends/Software/DebugUtil.h" +#include "VideoBackends/Software/EfbInterface.h" +#include "VideoBackends/Software/HwRasterizer.h" +#include "VideoBackends/Software/SWVideoConfig.h" +#include "VideoBackends/Software/SWStatistics.h" +#include "VideoBackends/Software/SWCommandProcessor.h" +#include "VideoBackends/Software/TextureSampler.h" + +#include "VideoCommon/ImageWrite.h" + namespace DebugUtil { -- cgit v1.2.3 From 425f9dcd5155614e66fab635819ef12ee390dc7b Mon Sep 17 00:00:00 2001 From: Pierre Bourdon Date: Wed, 19 Feb 2014 12:14:09 +0100 Subject: Fix more header sorting issues in VideoBackends/ (now check-includes clean). --- Source/Core/VideoBackends/Software/DebugUtil.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoBackends/Software/DebugUtil.cpp') diff --git a/Source/Core/VideoBackends/Software/DebugUtil.cpp b/Source/Core/VideoBackends/Software/DebugUtil.cpp index 80259a4576..95303d4c2f 100644 --- a/Source/Core/VideoBackends/Software/DebugUtil.cpp +++ b/Source/Core/VideoBackends/Software/DebugUtil.cpp @@ -10,9 +10,9 @@ #include "VideoBackends/Software/DebugUtil.h" #include "VideoBackends/Software/EfbInterface.h" #include "VideoBackends/Software/HwRasterizer.h" -#include "VideoBackends/Software/SWVideoConfig.h" -#include "VideoBackends/Software/SWStatistics.h" #include "VideoBackends/Software/SWCommandProcessor.h" +#include "VideoBackends/Software/SWStatistics.h" +#include "VideoBackends/Software/SWVideoConfig.h" #include "VideoBackends/Software/TextureSampler.h" #include "VideoCommon/ImageWrite.h" -- cgit v1.2.3