diff options
| author | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-08-28 14:13:28 -0500 |
|---|---|---|
| committer | Rohit Nirmal <rohitnirmal9@gmail.com> | 2015-08-28 14:13:28 -0500 |
| commit | 6252d2d71ac3bcbb767d2314356293ef1134ec47 (patch) | |
| tree | 4474fd4179b775a70e2a92a547f19a4ed500d4d0 /Source/Core/VideoCommon | |
| parent | b11de5bddb81a580438da14c82086d5ae4fbace2 (diff) | |
Fix building with PCH disabled.
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/IndexGenerator.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/PixelShaderGen.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Color.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Normal.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_Position.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VertexLoader_TextCoord.cpp | 1 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/XFMemory.cpp | 1 |
8 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/IndexGenerator.cpp b/Source/Core/VideoCommon/IndexGenerator.cpp index 19a6642f66..c1941c09b8 100644 --- a/Source/Core/VideoCommon/IndexGenerator.cpp +++ b/Source/Core/VideoCommon/IndexGenerator.cpp @@ -4,6 +4,7 @@ #include <cstddef> +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "VideoCommon/IndexGenerator.h" #include "VideoCommon/OpcodeDecoding.h" diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp index 8b4363e9ff..50691a82db 100644 --- a/Source/Core/VideoCommon/PixelShaderGen.cpp +++ b/Source/Core/VideoCommon/PixelShaderGen.cpp @@ -6,6 +6,7 @@ #include <cmath> #include <cstdio> +#include "Common/Common.h" #include "VideoCommon/BoundingBox.h" #include "VideoCommon/BPMemory.h" #include "VideoCommon/ConstantManager.h" diff --git a/Source/Core/VideoCommon/VertexLoader.cpp b/Source/Core/VideoCommon/VertexLoader.cpp index faf4599fdd..5673d1aa90 100644 --- a/Source/Core/VideoCommon/VertexLoader.cpp +++ b/Source/Core/VideoCommon/VertexLoader.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "Common/MemoryUtil.h" diff --git a/Source/Core/VideoCommon/VertexLoader_Color.cpp b/Source/Core/VideoCommon/VertexLoader_Color.cpp index df9d814357..ea65b3bb4c 100644 --- a/Source/Core/VideoCommon/VertexLoader_Color.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Color.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "VideoCommon/VertexLoader.h" diff --git a/Source/Core/VideoCommon/VertexLoader_Normal.cpp b/Source/Core/VideoCommon/VertexLoader_Normal.cpp index 615a09c3a9..5561d51c7a 100644 --- a/Source/Core/VideoCommon/VertexLoader_Normal.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Normal.cpp @@ -5,6 +5,7 @@ #include <cmath> #include <type_traits> +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "VideoCommon/VertexLoader.h" #include "VideoCommon/VertexLoader_Normal.h" diff --git a/Source/Core/VideoCommon/VertexLoader_Position.cpp b/Source/Core/VideoCommon/VertexLoader_Position.cpp index 906cf61d71..609038ab3e 100644 --- a/Source/Core/VideoCommon/VertexLoader_Position.cpp +++ b/Source/Core/VideoCommon/VertexLoader_Position.cpp @@ -4,6 +4,7 @@ #include <type_traits> +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "VideoCommon/VertexLoader.h" #include "VideoCommon/VertexLoader_Position.h" diff --git a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp index 28a9a33871..764efe7279 100644 --- a/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp +++ b/Source/Core/VideoCommon/VertexLoader_TextCoord.cpp @@ -4,6 +4,7 @@ #include <type_traits> +#include "Common/Common.h" #include "Common/CommonTypes.h" #include "VideoCommon/VertexLoader.h" #include "VideoCommon/VertexLoader_TextCoord.h" diff --git a/Source/Core/VideoCommon/XFMemory.cpp b/Source/Core/VideoCommon/XFMemory.cpp index 0e54fea373..1e9e71c5b8 100644 --- a/Source/Core/VideoCommon/XFMemory.cpp +++ b/Source/Core/VideoCommon/XFMemory.cpp @@ -2,6 +2,7 @@ // Licensed under GPLv2+ // Refer to the license.txt file included. +#include "Common/Common.h" #include "VideoCommon/XFMemory.h" // STATE_TO_SAVE |
