Merge pull request #876 from linkmauve/include-cleanups

Cleanup includes, mostly in common
This commit is contained in:
Yuri Kunde Schlesner 2015-07-10 16:36:12 -07:00
commit 867c28ae03
108 changed files with 380 additions and 408 deletions

View file

@ -2,17 +2,18 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include <type_traits>
#include "common/color.h"
#include "common/common_types.h"
#include "core/arm/arm_interface.h"
#include "common/logging/log.h"
#include "common/vector_math.h"
#include "core/settings.h"
#include "core/core.h"
#include "core/memory.h"
#include "core/core_timing.h"
#include "core/hle/hle.h"
#include "core/hle/service/gsp_gpu.h"
#include "core/hle/service/dsp_dsp.h"
#include "core/hle/service/hid/hid.h"
@ -21,6 +22,8 @@
#include "core/hw/gpu.h"
#include "video_core/command_processor.h"
#include "video_core/hwrasterizer_base.h"
#include "video_core/renderer_base.h"
#include "video_core/utils.h"
#include "video_core/video_core.h"

View file

@ -5,6 +5,7 @@
#pragma once
#include <cstddef>
#include <type_traits>
#include "common/assert.h"
#include "common/bit_field.h"

View file

@ -7,8 +7,6 @@
#include "common/common_types.h"
#include "common/logging/log.h"
#include "core/arm/arm_interface.h"
#include "core/hle/hle.h"
#include "core/hw/hw.h"
#include "core/hw/lcd.h"

View file

@ -5,6 +5,7 @@
#pragma once
#include <cstddef>
#include <type_traits>
#include "common/bit_field.h"
#include "common/common_funcs.h"

View file

@ -2,8 +2,10 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <algorithm>
#include <array>
#include <numeric>
#include <cstddef>
#include <memory>
#include "common/assert.h"
#include "common/color.h"