mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-23 05:45:51 +12:00
Rewriting hw vertex fetch
This commit is contained in:
parent
15b6a9e2d9
commit
4a39b06262
5 changed files with 107 additions and 95 deletions
2
third_party/duckstation/gl/stream_buffer.cpp
vendored
2
third_party/duckstation/gl/stream_buffer.cpp
vendored
|
@ -149,7 +149,7 @@ namespace {
|
|||
const u32 end = std::min<u32>(GetSyncIndexForOffset(offset) + 1, NUM_SYNC_POINTS);
|
||||
for (; m_available_block_index < end; m_available_block_index++) {
|
||||
if (!m_sync_objects[m_used_block_index]) [[unlikely]] {
|
||||
Helpers::warn("GL stream buffer: Fence slot we're trying to wait on in not in use");
|
||||
Helpers::warn("GL stream buffer: Fence slot we're trying to wait on is not in use");
|
||||
}
|
||||
|
||||
WaitForSync(m_sync_objects[m_available_block_index]);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue