Common: Cleanup key_map includes.

This commit is contained in:
Emmanuel Gil Peyrot 2015-06-21 13:40:28 +01:00
parent 2d044a67c9
commit 596b7c4f63
13 changed files with 32 additions and 19 deletions

View file

@ -2,10 +2,14 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#include <cstring>
#include <memory>
#include "common/color.h"
#include "core/settings.h"
#include "core/hw/gpu.h"
#include "core/memory.h"
#include "core/settings.h"
#include "video_core/pica.h"
#include "video_core/utils.h"
@ -16,8 +20,6 @@
#include "generated/gl_3_2_core.h"
#include <memory>
static bool IsPassThroughTevStage(const Pica::Regs::TevStageConfig& stage) {
return (stage.color_op == Pica::Regs::TevStageConfig::Operation::Replace &&
stage.alpha_op == Pica::Regs::TevStageConfig::Operation::Replace &&

View file

@ -4,6 +4,10 @@
#pragma once
#include <vector>
#include "common/common_types.h"
#include "video_core/hwrasterizer_base.h"
#include "gl_state.h"