vk_master_semaphore: Add missing const qualifier for IsFree()

This member function doesn't modify class state.
This commit is contained in:
Lioncash 2021-04-12 09:33:26 -04:00
parent 26d60014d0
commit c5f5d6e7f6

View File

@ -35,7 +35,7 @@ public:
}
/// Returns true when a tick has been hit by the GPU.
[[nodiscard]] bool IsFree(u64 tick) {
[[nodiscard]] bool IsFree(u64 tick) const noexcept {
return gpu_tick.load(std::memory_order_relaxed) >= tick;
}