HomeSort by relevance Sort by last modified time
    Searched defs:p_obj_node (Results 1 - 2 of 2) sorted by null

  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
object_tracker.h 552 OBJTRACK_NODE *p_obj_node = NULL; local
555 p_obj_node = new OBJTRACK_NODE;
556 VkQueueMap[reinterpret_cast<uint64_t>(vkObj)] = p_obj_node;
561 p_obj_node = queue_item->second;
563 p_obj_node->objType = objType;
564 p_obj_node->belongsTo = reinterpret_cast<uint64_t>(device);
565 p_obj_node->status = OBJSTATUS_NONE;
566 p_obj_node->vkObj = reinterpret_cast<uint64_t>(vkObj);
    [all...]
  /external/vulkan-validation-layers/layers/
object_tracker.cpp 217 OBJTRACK_NODE *p_obj_node = NULL; local
220 p_obj_node = new OBJTRACK_NODE;
221 device_data->object_map[VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT][reinterpret_cast<uint64_t>(vkObj)] = p_obj_node;
225 p_obj_node = queue_item->second;
227 p_obj_node->object_type = object_type;
228 p_obj_node->status = OBJSTATUS_NONE;
229 p_obj_node->handle = reinterpret_cast<uint64_t>(vkObj);
    [all...]

Completed in 40 milliseconds