• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* Copyright (c) 2015-2016 The Khronos Group Inc.
2  * Copyright (c) 2015-2016 Valve Corporation
3  * Copyright (c) 2015-2016 LunarG, Inc.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *     http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * Author: Jon Ashburn <jon@lunarg.com>
18  * Author: Mark Lobodzinski <mark@lunarg.com>
19  **************************************************************************/
20 #pragma once
21 #include "vulkan/vulkan.h"
22 #include "vulkan/vk_layer.h"
23 #include <unordered_map>
24 #include <stdbool.h>
25 #include <stdio.h>
26 
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30 
31 // Definitions for Debug Actions
32 typedef enum VkLayerDbgActionBits {
33     VK_DBG_LAYER_ACTION_IGNORE = 0x00000000,
34     VK_DBG_LAYER_ACTION_CALLBACK = 0x00000001,
35     VK_DBG_LAYER_ACTION_LOG_MSG = 0x00000002,
36     VK_DBG_LAYER_ACTION_BREAK = 0x00000004,
37     VK_DBG_LAYER_ACTION_DEBUG_OUTPUT = 0x00000008,
38     VK_DBG_LAYER_ACTION_DEFAULT = 0x40000000,
39 } VkLayerDbgActionBits;
40 typedef VkFlags VkLayerDbgActionFlags;
41 
42 const std::unordered_map<std::string, VkFlags> debug_actions_option_definitions = {
43     {std::string("VK_DBG_LAYER_ACTION_IGNORE"), VK_DBG_LAYER_ACTION_IGNORE},
44     {std::string("VK_DBG_LAYER_ACTION_CALLBACK"), VK_DBG_LAYER_ACTION_CALLBACK},
45     {std::string("VK_DBG_LAYER_ACTION_LOG_MSG"), VK_DBG_LAYER_ACTION_LOG_MSG},
46     {std::string("VK_DBG_LAYER_ACTION_BREAK"), VK_DBG_LAYER_ACTION_BREAK},
47 #if defined(WIN32)
48     {std::string("VK_DBG_LAYER_ACTION_DEBUG_OUTPUT"), VK_DBG_LAYER_ACTION_DEBUG_OUTPUT},
49 #endif
50     {std::string("VK_DBG_LAYER_ACTION_DEFAULT"), VK_DBG_LAYER_ACTION_DEFAULT}};
51 
52 const std::unordered_map<std::string, VkFlags> report_flags_option_definitions = {
53     {std::string("warn"), VK_DEBUG_REPORT_WARNING_BIT_EXT},
54     {std::string("info"), VK_DEBUG_REPORT_INFORMATION_BIT_EXT},
55     {std::string("perf"), VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT},
56     {std::string("error"), VK_DEBUG_REPORT_ERROR_BIT_EXT},
57     {std::string("debug"), VK_DEBUG_REPORT_DEBUG_BIT_EXT}};
58 
59 const char *getLayerOption(const char *_option);
60 FILE *getLayerLogOutput(const char *_option, const char *layerName);
61 VkFlags GetLayerOptionFlags(std::string _option, std::unordered_map<std::string, VkFlags> const &enum_data,
62                                           uint32_t option_default);
63 
64 void setLayerOption(const char *_option, const char *_val);
65 void print_msg_flags(VkFlags msgFlags, char *msg_flags);
66 
67 #ifdef __cplusplus
68 }
69 #endif
70