Lines Matching refs:VkLayerDbgFunctionNode
39 VkLayerDbgFunctionNode *debug_callback_list;
40 VkLayerDbgFunctionNode *default_debug_callback_list;
54 static inline void AddDebugMessageCallback(debug_report_data *debug_data, VkLayerDbgFunctionNode **… in AddDebugMessageCallback()
55 VkLayerDbgFunctionNode *new_node) { in AddDebugMessageCallback()
62 static inline void RemoveDebugMessageCallback(debug_report_data *debug_data, VkLayerDbgFunctionNode… in RemoveDebugMessageCallback()
64 VkLayerDbgFunctionNode *cur_callback = *list_head; in RemoveDebugMessageCallback()
65 VkLayerDbgFunctionNode *prev_callback = cur_callback; in RemoveDebugMessageCallback()
92 static inline void RemoveAllMessageCallbacks(debug_report_data *debug_data, VkLayerDbgFunctionNode … in RemoveAllMessageCallbacks()
93 VkLayerDbgFunctionNode *current_callback = *list_head; in RemoveAllMessageCallbacks()
94 VkLayerDbgFunctionNode *prev_callback = current_callback; in RemoveAllMessageCallbacks()
112 VkLayerDbgFunctionNode *pTrav = NULL; in debug_report_log_msg()
177 …VkLayerDbgFunctionNode *pNewDbgFuncNode = (VkLayerDbgFunctionNode *)malloc(sizeof(VkLayerDbgFuncti… in layer_create_msg_callback()