summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/TransformUnit.cpp
diff options
context:
space:
mode:
authorshuffle2 <godisgovernment@gmail.com>2016-10-02 20:31:35 -0700
committerGitHub <noreply@github.com>2016-10-02 20:31:35 -0700
commit17aef319e868ff04356826722f5f35a7a1f386ae (patch)
tree09fb4a85e01512b5b0cccdc53f1364562c9f576b /Source/Core/VideoBackends/Software/TransformUnit.cpp
parent5e8bc4aa1dca15942a86616c33fd940344ae79bd (diff)
parentc9ef042b2d5dfed40829cb6af39ad0441820e405 (diff)
Merge pull request #4240 from lioncash/include
Software: Clean out unnecessary includes/fwd decls
Diffstat (limited to 'Source/Core/VideoBackends/Software/TransformUnit.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/TransformUnit.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/Source/Core/VideoBackends/Software/TransformUnit.cpp b/Source/Core/VideoBackends/Software/TransformUnit.cpp
index 38734fa17c..0a2138f193 100644
--- a/Source/Core/VideoBackends/Software/TransformUnit.cpp
+++ b/Source/Core/VideoBackends/Software/TransformUnit.cpp
@@ -2,14 +2,19 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoBackends/Software/TransformUnit.h"
+
#include <algorithm>
#include <cmath>
+#include "Common/Assert.h"
+#include "Common/CommonFuncs.h"
#include "Common/CommonTypes.h"
+#include "Common/Logging/Log.h"
#include "Common/MathUtil.h"
+#include "Common/MsgHandler.h"
#include "VideoBackends/Software/NativeVertexFormat.h"
-#include "VideoBackends/Software/TransformUnit.h"
#include "VideoBackends/Software/Vec3.h"
#include "VideoCommon/BPMemory.h"