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 @@
#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"