Merge pull request #1347 from comex/header-hygiene

Add missing includes where headers depend on other headers having been included first.
This commit is contained in:
comex
2014-10-22 23:23:58 -04:00
50 changed files with 90 additions and 7 deletions

View File

@ -4,6 +4,8 @@
#include <string>
#include "Common/CommonTypes.h"
#include "VideoBackends/OGL/GLExtensions/ARB_blend_func_extended.h"
#include "VideoBackends/OGL/GLExtensions/ARB_buffer_storage.h"
#include "VideoBackends/OGL/GLExtensions/ARB_debug_output.h"

View File

@ -1,6 +1,8 @@
#pragma once
#include <array>
#include "VideoBackends/OGL/GLExtensions/GLExtensions.h"
#include "VideoCommon/PerfQueryBase.h"
namespace OGL

View File

@ -8,6 +8,7 @@
#include <unordered_map>
#include "VideoBackends/OGL/GLUtil.h"
#include "VideoBackends/OGL/ProgramShaderCache.h"
#include "VideoCommon/PostProcessing.h"
#include "VideoCommon/VideoCommon.h"

View File

@ -6,6 +6,8 @@
#include <string>
#include "Common/CommonTypes.h"
namespace OGL
{

View File

@ -4,7 +4,9 @@
#pragma once
#include "VideoBackends/OGL/GLExtensions/GLExtensions.h"
#include "VideoCommon/CPMemory.h"
#include "VideoCommon/NativeVertexFormat.h"
#include "VideoCommon/VertexManagerBase.h"
namespace OGL

View File

@ -4,6 +4,8 @@
#pragma once
#include "Common/Common.h"
namespace DebugUtil
{
void Init();

View File

@ -6,6 +6,7 @@
#include "Common/CommonTypes.h"
#include "VideoBackends/Software/CPMemLoader.h"
#include "VideoBackends/Software/NativeVertexFormat.h"
#include "VideoBackends/Software/SetupUnit.h"
#include "VideoBackends/Software/SWStatistics.h"
#include "VideoBackends/Software/SWVertexLoader.h"

View File

@ -5,7 +5,7 @@
#include <algorithm>
#include <cmath>
#include "Common/CommonFuncs.h"
#include "Common/Common.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/BPMemLoader.h"
#include "VideoBackends/Software/TextureSampler.h"