diff options
| author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2019-06-10 22:58:20 -0400 |
|---|---|---|
| committer | FernandoS27 <fsahmkow27@gmail.com> | 2019-07-05 15:49:23 -0400 |
| commit | ea975896242fba4a92d68c8fb45751e60ed826cc (patch) | |
| tree | d5ba1357f40876d535c2148b62964f59765ace01 /src/core/hle/service/nvflinger/buffer_queue.h | |
| parent | 24408cce9bd899a6709c03b25e318123f4de7371 (diff) | |
nvflinger: Acquire buffers in the same order as they were queued.
Diffstat (limited to 'src/core/hle/service/nvflinger/buffer_queue.h')
| -rw-r--r-- | src/core/hle/service/nvflinger/buffer_queue.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/nvflinger/buffer_queue.h b/src/core/hle/service/nvflinger/buffer_queue.h index c163e565c..be993ee61 100644 --- a/src/core/hle/service/nvflinger/buffer_queue.h +++ b/src/core/hle/service/nvflinger/buffer_queue.h @@ -6,6 +6,7 @@ #include <optional> #include <vector> +#include <list> #include "common/common_funcs.h" #include "common/math_util.h" @@ -97,6 +98,7 @@ private: u64 layer_id; std::vector<Buffer> queue; + std::list<u32> queue_sequence; Kernel::EventPair buffer_wait_event; }; |
