summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/vi/vi.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-09 03:58:59 +0100
committerbunnei <bunneidev@gmail.com>2018-01-11 05:28:33 +0100
commit7e0ff43da07763cc022e304e63bf5d2f1cdb401a (patch)
tree4e91b94390e52e06d32e6287a2366b6825e3cbfd /src/core/hle/service/vi/vi.h
parentNV: Expose the nvdisp_disp0 device and a weak reference to the nvdrv:a service. (diff)
downloadyuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar.gz
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar.bz2
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar.lz
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar.xz
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.tar.zst
yuzu-7e0ff43da07763cc022e304e63bf5d2f1cdb401a.zip
Diffstat (limited to 'src/core/hle/service/vi/vi.h')
-rw-r--r--src/core/hle/service/vi/vi.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/hle/service/vi/vi.h b/src/core/hle/service/vi/vi.h
index 9604bd1c2..d5837d971 100644
--- a/src/core/hle/service/vi/vi.h
+++ b/src/core/hle/service/vi/vi.h
@@ -9,6 +9,10 @@
#include "core/hle/kernel/event.h"
#include "core/hle/service/service.h"
+namespace CoreTiming {
+struct EventType;
+}
+
namespace Service {
namespace VI {
@@ -122,7 +126,7 @@ private:
u32 next_buffer_queue_id = 1;
/// CoreTiming event that handles screen composition.
- int composition_event;
+ CoreTiming::EventType* composition_event;
};
class IApplicationDisplayService final : public ServiceFramework<IApplicationDisplayService> {