aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/vi/vi.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-14 23:44:05 -0500
committerLiam <byteslice@airmail.cc>2024-02-17 18:08:38 -0500
commit812f23d05c77fb10407546c3e7a95447fcbea395 (patch)
treebbfb035c35ccffb6dbe0995002c2937bd94edc2d /src/core/hle/service/vi/vi.h
parentdcce9837d240fa2492f29e5ae2649085ae8f711c (diff)
vi: manage resources independently of nvnflinger and refactor
Diffstat (limited to 'src/core/hle/service/vi/vi.h')
-rw-r--r--src/core/hle/service/vi/vi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.h b/src/core/hle/service/vi/vi.h
index 0c3dc175d..7c1f350d8 100644
--- a/src/core/hle/service/vi/vi.h
+++ b/src/core/hle/service/vi/vi.h
@@ -3,12 +3,14 @@
#pragma once
+#include "common/polyfill_thread.h"
+
namespace Core {
class System;
}
namespace Service::VI {
-void LoopProcess(Core::System& system);
+void LoopProcess(Core::System& system, std::stop_token token);
} // namespace Service::VI