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 * Permission is hereby granted, free of charge, to any person obtaining a copy
6 * of this software and/or associated documentation files (the "Materials"), to
7 * deal in the Materials without restriction, including without limitation the
8 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 * sell copies of the Materials, and to permit persons to whom the Materials
10 * are furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice(s) and this permission notice shall be included
13 * in all copies or substantial portions of the Materials.
14 *
15 * THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18 *
19 * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE
22 * USE OR OTHER DEALINGS IN THE MATERIALS
23 *
24 * Author: Jon Ashburn <jon@lunarg.com>
25 **************************************************************************/
26#pragma once
27#include <stdbool.h>
28
29#ifdef __cplusplus
30extern "C" {
31#endif
32
33const char *getLayerOption(const char *_option);
34FILE *getLayerLogOutput(const char *_option, const char *layerName);
35VkDebugReportFlagsEXT getLayerOptionFlags(const char *_option, uint32_t optionDefault);
36bool getLayerOptionEnum(const char *_option, uint32_t *optionDefault);
37
38void setLayerOption(const char *_option, const char *_val);
39void setLayerOptionEnum(const char *_option, const char *_valEnum);
40void print_msg_flags(VkFlags msgFlags, char *msg_flags);
41#ifdef __cplusplus
42}
43#endif
44