video_core/engines: Remove unnecessary inclusions where applicable

Replaces header inclusions with forward declarations where applicable
and also removes unused headers within the cpp file. This reduces a few
more dependencies on core/memory.h
This commit is contained in:
Lioncash
2019-04-05 18:21:15 -04:00
parent 66be5150d6
commit 26223f8124
10 changed files with 25 additions and 9 deletions

View File

@ -5,9 +5,9 @@
#include "common/assert.h"
#include "common/logging/log.h"
#include "core/core.h"
#include "core/memory.h"
#include "video_core/engines/maxwell_3d.h"
#include "video_core/engines/maxwell_dma.h"
#include "video_core/memory_manager.h"
#include "video_core/rasterizer_interface.h"
#include "video_core/renderer_base.h"
#include "video_core/textures/decoders.h"