mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
VideoCommon: add xfbs presented to video events
This commit is contained in:
parent
69aca2fbfc
commit
e5b7b2e9ee
1 changed files with 5 additions and 0 deletions
|
@ -3,6 +3,9 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <string_view>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "Common/CommonTypes.h"
|
#include "Common/CommonTypes.h"
|
||||||
#include "Common/HookableEvent.h"
|
#include "Common/HookableEvent.h"
|
||||||
|
|
||||||
|
@ -71,6 +74,8 @@ struct PresentInfo
|
||||||
|
|
||||||
// Accuracy of actual_present_time
|
// Accuracy of actual_present_time
|
||||||
PresentTimeAccuracy present_time_accuracy = PresentTimeAccuracy::Unimplemented;
|
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.
|
// An event called just as a frame is queued for presentation.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue