| 63 | } |
| 64 | |
| 65 | WriteLockGuard CoreChecks::WriteLock() { |
| 66 | if (global_settings.fine_grained_locking) { |
| 67 | return WriteLockGuard(validation_object_mutex, std::defer_lock); |
| 68 | } else { |
| 69 | return WriteLockGuard(validation_object_mutex); |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | bool SemaphoreSubmitState::CanWaitBinary(const vvl::Semaphore& semaphore_state) const { |
| 74 | assert(semaphore_state.type == VK_SEMAPHORE_TYPE_BINARY); |
no outgoing calls
no test coverage detected