mirror of
https://gitee.com/openharmony/third_party_vulkan-headers
synced 2025-02-18 14:57:46 +00:00
debug_report: rename object type and error bits
Conflicts: demos/tri.c layers/device_limits.cpp layers/draw_state.cpp layers/image.cpp layers/mem_tracker.cpp layers/param_checker.cpp layers/vk_layer_logging.h loader/debug_report.c tests/layer_validation_tests.cpp
This commit is contained in:
parent
39033a8239
commit
ec1d0b277b
@ -5,7 +5,7 @@
|
||||
#pragma once
|
||||
|
||||
#include "vulkan/vulkan.h"
|
||||
#include <vulkan/vk_lunarg_debug_report.h>
|
||||
#include <vulkan/vk_ext_debug_report.h>
|
||||
#include "vulkan/vk_lunarg_debug_marker.h"
|
||||
#if defined(__GNUC__) && __GNUC__ >= 4
|
||||
# define VK_LAYER_EXPORT __attribute__((visibility("default")))
|
||||
@ -174,9 +174,9 @@ typedef struct VkLayerInstanceDispatchTable_
|
||||
PFN_vkGetPhysicalDeviceSurfaceCapabilitiesKHR GetPhysicalDeviceSurfaceCapabilitiesKHR;
|
||||
PFN_vkGetPhysicalDeviceSurfaceFormatsKHR GetPhysicalDeviceSurfaceFormatsKHR;
|
||||
PFN_vkGetPhysicalDeviceSurfacePresentModesKHR GetPhysicalDeviceSurfacePresentModesKHR;
|
||||
PFN_vkCreateDebugReportCallbackLUNARG CreateDebugReportCallbackLUNARG;
|
||||
PFN_vkDestroyDebugReportCallbackLUNARG DestroyDebugReportCallbackLUNARG;
|
||||
PFN_vkDebugReportMessageLUNARG DebugReportMessageLUNARG;
|
||||
PFN_vkCreateDebugReportCallbackEXT CreateDebugReportCallbackEXT;
|
||||
PFN_vkDestroyDebugReportCallbackEXT DestroyDebugReportCallbackEXT;
|
||||
PFN_vkDebugReportMessageEXT DebugReportMessageEXT;
|
||||
#ifdef VK_USE_PLATFORM_MIR_KHR
|
||||
PFN_vkCreateMirSurfaceKHR CreateMirSurfaceKHR;
|
||||
PFN_vkGetPhysicalDeviceMirPresentationSupportKHR GetPhysicalDeviceMirPresentationSupportKHR;
|
||||
@ -205,8 +205,8 @@ typedef struct VkLayerInstanceDispatchTable_
|
||||
// LL node for tree of dbg callback functions
|
||||
typedef struct VkLayerDbgFunctionNode_
|
||||
{
|
||||
VkDebugReportCallbackLUNARG msgCallback;
|
||||
PFN_vkDebugReportCallbackLUNARG pfnMsgCallback;
|
||||
VkDebugReportCallbackEXT msgCallback;
|
||||
PFN_vkDebugReportCallbackEXT pfnMsgCallback;
|
||||
VkFlags msgFlags;
|
||||
const void *pUserData;
|
||||
struct VkLayerDbgFunctionNode_ *pNext;
|
||||
|
Loading…
x
Reference in New Issue
Block a user