summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/video_core/gpu.h')
-rw-r--r--src/video_core/gpu.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 4c97d6c6f..c3e5311fa 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -238,9 +238,7 @@ public:
238 virtual void FlushAndInvalidateRegion(CacheAddr addr, u64 size) = 0; 238 virtual void FlushAndInvalidateRegion(CacheAddr addr, u64 size) = 0;
239 239
240protected: 240protected:
241 virtual void TriggerCpuInterrupt(const u32 event_id) const { 241 virtual void TriggerCpuInterrupt(const u32 event_id) const = 0;
242 // Todo implement this
243 }
244 242
245private: 243private:
246 void ProcessBindMethod(const MethodCall& method_call); 244 void ProcessBindMethod(const MethodCall& method_call);
@@ -260,6 +258,7 @@ private:
260protected: 258protected:
261 std::unique_ptr<Tegra::DmaPusher> dma_pusher; 259 std::unique_ptr<Tegra::DmaPusher> dma_pusher;
262 VideoCore::RendererBase& renderer; 260 VideoCore::RendererBase& renderer;
261 Core::System& system;
263 262
264private: 263private:
265 std::unique_ptr<Tegra::MemoryManager> memory_manager; 264 std::unique_ptr<Tegra::MemoryManager> memory_manager;