Merge pull request #1141 from lioncash/hdr

video_core: Remove unnecessary includes from headers
This commit is contained in:
Yuri Kunde Schlesner 2015-09-11 02:02:11 -03:00
commit 506ab06238
5 changed files with 3 additions and 13 deletions

View File

@ -10,9 +10,6 @@
#include "core/hle/service/gsp_gpu.h"
#include "command_processor.h"
#include "pica.h"
class GraphicsDebugger
{
public:

View File

@ -8,8 +8,6 @@
#include "video_core/pica.h"
#include "video_core/shader/shader_interpreter.h"
namespace Pica {
/*

View File

@ -18,11 +18,11 @@
#include "core/settings.h"
#include "video_core/video_core.h"
#include "video_core/renderer_opengl/renderer_opengl.h"
#include "video_core/debug_utils/debug_utils.h"
#include "video_core/renderer_opengl/gl_rasterizer.h"
#include "video_core/renderer_opengl/gl_shader_util.h"
#include "video_core/renderer_opengl/gl_shaders.h"
#include "video_core/debug_utils/debug_utils.h"
#include "video_core/renderer_opengl/renderer_opengl.h"
/**
* Vertex structure that the drawn screen rectangles are composed of.

View File

@ -8,13 +8,10 @@
#include <glad/glad.h>
#include "common/math_util.h"
#include "core/hw/gpu.h"
#include "video_core/renderer_base.h"
#include "video_core/renderer_opengl/gl_state.h"
#include "video_core/renderer_opengl/gl_rasterizer.h"
class EmuWindow;

View File

@ -4,8 +4,6 @@
#pragma once
#include "video_core/pica.h"
#include "shader.h"
namespace Pica {