summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
authoriwubcode <iwubcode@users.noreply.github.com>2024-04-09 18:57:32 -0500
committeriwubcode <iwubcode@users.noreply.github.com>2024-04-09 18:57:32 -0500
commite5b7b2e9eebb21ed19924c821ddde97576a65480 (patch)
tree22e825ec3a97889901cffe33c4a152984a3a0b18 /Source
parent69aca2fbfc88d08a17d36c03d51dd698eb9cce1b (diff)
VideoCommon: add xfbs presented to video events
Diffstat (limited to 'Source')
-rw-r--r--Source/Core/VideoCommon/VideoEvents.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/VideoCommon/VideoEvents.h b/Source/Core/VideoCommon/VideoEvents.h
index 1d8b329265..9c763dce34 100644
--- a/Source/Core/VideoCommon/VideoEvents.h
+++ b/Source/Core/VideoCommon/VideoEvents.h
@@ -3,6 +3,9 @@
#pragma once
+#include <string_view>
+#include <vector>
+
#include "Common/CommonTypes.h"
#include "Common/HookableEvent.h"
@@ -71,6 +74,8 @@ struct PresentInfo
// Accuracy of actual_present_time
PresentTimeAccuracy present_time_accuracy = PresentTimeAccuracy::Unimplemented;
+
+ std::vector<std::string_view> xfb_copy_hashes;
};
// An event called just as a frame is queued for presentation.