diff options
author | Lioncash <mathew1800@gmail.com> | 2019-02-16 04:05:17 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-02-16 04:06:23 +0100 |
commit | a8fa5019b51c9ce765124121daac863cfc1365aa (patch) | |
tree | e23b97873c1e6b4fcb34066fccb393d2a1147bb8 /src/video_core/gpu.h | |
parent | Merge pull request #2123 from lioncash/coretiming-global (diff) | |
download | yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.gz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.bz2 yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.lz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.xz yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.tar.zst yuzu-a8fa5019b51c9ce765124121daac863cfc1365aa.zip |
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r-- | src/video_core/gpu.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index a482196ea..0f5bfdcbf 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -6,12 +6,15 @@ #include <array> #include <memory> -#include <vector> #include "common/common_types.h" #include "core/hle/service/nvflinger/buffer_queue.h" #include "video_core/dma_pusher.h" #include "video_core/memory_manager.h" +namespace Core { +class System; +} + namespace VideoCore { class RasterizerInterface; } @@ -118,7 +121,7 @@ enum class EngineID { class GPU final { public: - explicit GPU(VideoCore::RasterizerInterface& rasterizer); + explicit GPU(Core::System& system, VideoCore::RasterizerInterface& rasterizer); ~GPU(); struct MethodCall { |