diff options
| author | Lioncash <mathew1800@gmail.com> | 2019-04-05 18:21:15 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2019-04-05 18:26:32 -0400 |
| commit | 26223f812400430ac690ab3f33068924c076cd45 (patch) | |
| tree | c78dbfa502b8b3ce895e3bc3a8939dbaa970a2bd /src/video_core/engines/kepler_memory.h | |
| parent | 66be5150d6d201e3f8ca6e5e09968f052df4beb1 (diff) | |
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
Diffstat (limited to 'src/video_core/engines/kepler_memory.h')
| -rw-r--r-- | src/video_core/engines/kepler_memory.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/engines/kepler_memory.h b/src/video_core/engines/kepler_memory.h index 9181e9d80..ef5e339f1 100644 --- a/src/video_core/engines/kepler_memory.h +++ b/src/video_core/engines/kepler_memory.h @@ -10,12 +10,15 @@ #include "common/common_funcs.h" #include "common/common_types.h" #include "video_core/gpu.h" -#include "video_core/memory_manager.h" namespace Core { class System; } +namespace Tegra { +class MemoryManager; +} + namespace VideoCore { class RasterizerInterface; } |
