mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
[Vulkan UI] Fix Travis
This commit is contained in:
parent
2180280c8e
commit
6c67fe4b29
|
|
@ -244,7 +244,7 @@ void CircularBuffer::Flush(VkDeviceSize offset, VkDeviceSize length) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void CircularBuffer::Clear() {
|
void CircularBuffer::Clear() {
|
||||||
std::swap(allocations_, std::queue<Allocation>());
|
allocations_.swap(std::queue<Allocation>());
|
||||||
write_head_ = read_head_ = 0;
|
write_head_ = read_head_ = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue