Home
last modified time | relevance | path

Searched refs:HandleWithState (Results 1 – 2 of 2) sorted by relevance

/hardware/google/gfxstream/host/vulkan/
DVkReconstruction.h51 typedef std::pair<uint64_t, HandleState> HandleWithState; typedef
53 inline size_t operator()(const HandleWithState& v) const { in operator()
61 std::unordered_set<HandleWithState, HandleWithStateHash> childHandles;
62 std::vector<HandleWithState> parentHandles;
DVkReconstruction.cpp42 std::vector<VkReconstruction::HandleWithState> typeTagSortedHandles( in typeTagSortedHandles()
43 const std::vector<VkReconstruction::HandleWithState>& handles) { in typeTagSortedHandles()
46 std::vector<VkReconstruction::HandleWithState> res = handles; in typeTagSortedHandles()
49 [](const VkReconstruction::HandleWithState& lhs, in typeTagSortedHandles()
50 const VkReconstruction::HandleWithState& rhs) { in typeTagSortedHandles()
68 std::unordered_map<HandleWithState, int, HandleWithStateHash> totalParents; in save()
69 std::vector<HandleWithState> next; in save()
76 HandleWithState handleWithState = {entityHandle, static_cast<HandleState>(state)}; in save()
84 std::vector<std::vector<HandleWithState>> handlesByTopoOrder; in save()
89 const std::vector<HandleWithState>& current = handlesByTopoOrder.back(); in save()