Home
last modified time | relevance | path

Searched refs:fence_state (Results 1 – 4 of 4) sorted by relevance

/external/crosvm/rutabaga_gfx/src/
Drenderer_utils.rs64 pub fence_state: Rc<RefCell<FenceState>>, field
72 let mut fence_state = cookie.fence_state.borrow_mut(); in write_fence() localVariable
73 fence_state.write(fence); in write_fence()
Dgfxstream.rs119 fence_state: Rc<RefCell<FenceState>>, field
204 let fence_state = Rc::new(RefCell::new(FenceState { latest_fence: 0 })); in init() localVariable
207 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()
Dvirgl_renderer.rs37 fence_state: Rc<RefCell<FenceState>>, field
195 let fence_state = Rc::new(RefCell::new(FenceState { latest_fence: 0 })); in init() localVariable
198 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()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp2826 auto fence_state = GetFenceState(fence); in VerifyQueueStateToFence() local
2827 …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() local
4987 fence_state->fence = *pFence; in PostCallRecordCreateFence()
4988 fence_state->createInfo = *pCreateInfo; in PostCallRecordCreateFence()
4989fence_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() local
12515 if (fence_state) { in RecordGetExternalFenceState()
[all …]