Home
last modified time | relevance | path

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

/external/vulkan-validation-layers/layers/
Dobject_tracker_utils.cpp105 ObjTrackState *pNewObjNode = new ObjTrackState; in AllocateCommandBuffer() local
106 pNewObjNode->object_type = kVulkanObjectTypeCommandBuffer; in AllocateCommandBuffer()
107 pNewObjNode->handle = HandleToUint64(command_buffer); in AllocateCommandBuffer()
108 pNewObjNode->parent_object = HandleToUint64(command_pool); in AllocateCommandBuffer()
110 pNewObjNode->status = OBJSTATUS_COMMAND_BUFFER_SECONDARY; in AllocateCommandBuffer()
112 pNewObjNode->status = OBJSTATUS_NONE; in AllocateCommandBuffer()
114 object_map[kVulkanObjectTypeCommandBuffer][HandleToUint64(command_buffer)] = pNewObjNode; in AllocateCommandBuffer()
147 ObjTrackState *pNewObjNode = new ObjTrackState; in AllocateDescriptorSet() local
148 pNewObjNode->object_type = kVulkanObjectTypeDescriptorSet; in AllocateDescriptorSet()
149 pNewObjNode->status = OBJSTATUS_NONE; in AllocateDescriptorSet()
[all …]
Dobject_lifetime_validation.h178 ObjTrackState *pNewObjNode = new ObjTrackState; in CreateObject() local
179 pNewObjNode->object_type = object_type; in CreateObject()
180 pNewObjNode->status = custom_allocator ? OBJSTATUS_CUSTOM_ALLOCATOR : OBJSTATUS_NONE; in CreateObject()
181 pNewObjNode->handle = object_handle; in CreateObject()
183 object_map[object_type][object_handle] = pNewObjNode; in CreateObject()
188 pNewObjNode->child_objects.reset(new std::unordered_set<uint64_t>); in CreateObject()