Browse Source

Update src/core/hle/service/nvnflinger/buffer_queue_core.h

Adjust buffer_history_pos.
pull/484/head
SDK-Chan 6 months ago
committed by crueter
parent
commit
881bd82d6e
  1. 2
      src/core/hle/service/nvnflinger/buffer_queue_core.h

2
src/core/hle/service/nvnflinger/buffer_queue_core.h

@ -91,7 +91,7 @@ private:
bool buffer_has_been_queued{}; bool buffer_has_been_queued{};
u64 frame_counter{}; u64 frame_counter{};
std::array<BufferHistoryInfo, BUFFER_HISTORY_SIZE> buffer_history{}; std::array<BufferHistoryInfo, BUFFER_HISTORY_SIZE> buffer_history{};
u32 buffer_history_pos{};
u32 buffer_history_pos{BUFFER_HISTORY_SIZE-1};
u32 transform_hint{}; u32 transform_hint{};
bool is_allocating{}; bool is_allocating{};
mutable std::condition_variable_any is_allocating_condition; mutable std::condition_variable_any is_allocating_condition;

Loading…
Cancel
Save