Searched refs:fence_state (Results 1 – 4 of 4) sorted by relevance
64 pub fence_state: Rc<RefCell<FenceState>>, field72 let mut fence_state = cookie.fence_state.borrow_mut(); in write_fence() localVariable73 fence_state.write(fence); in write_fence()
119 fence_state: Rc<RefCell<FenceState>>, field204 let fence_state = Rc::new(RefCell::new(FenceState { latest_fence: 0 })); in init() localVariable207 fence_state: Rc::clone(&fence_state), in init()221 Ok(Box::new(Gfxstream { fence_state })) in init()248 self.fence_state.borrow().latest_fence in poll()
37 fence_state: Rc<RefCell<FenceState>>, field195 let fence_state = Rc::new(RefCell::new(FenceState { latest_fence: 0 })); in init() localVariable198 fence_state: Rc::clone(&fence_state), in init()217 Ok(Box::new(VirglRenderer { fence_state })) in init()317 self.fence_state.borrow().latest_fence in poll()
2826 auto fence_state = GetFenceState(fence); in VerifyQueueStateToFence() local2827 …if (fence_state && fence_state->scope == kSyncScopeInternal && VK_NULL_HANDLE != fence_state->sign… in VerifyQueueStateToFence()2828 …return VerifyQueueStateToSeq(GetQueueState(fence_state->signaler.first), fence_state->signaler.sec… in VerifyQueueStateToFence()4986 std::unique_ptr<FENCE_STATE> fence_state(new FENCE_STATE{}); in PostCallRecordCreateFence() local4987 fence_state->fence = *pFence; in PostCallRecordCreateFence()4988 fence_state->createInfo = *pCreateInfo; in PostCallRecordCreateFence()4989 …fence_state->state = (pCreateInfo->flags & VK_FENCE_CREATE_SIGNALED_BIT) ? FENCE_RETIRED : FENCE_U… in PostCallRecordCreateFence()4990 fenceMap[*pFence] = std::move(fence_state); in PostCallRecordCreateFence()12514 FENCE_STATE *fence_state = GetFenceState(fence); in RecordGetExternalFenceState() local12515 if (fence_state) { in RecordGetExternalFenceState()[all …]