build: Add missing include headers
This commit is contained in:
parent
0ab12c1668
commit
645eed2883
6 changed files with 16 additions and 7 deletions
|
@ -10,8 +10,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "vk_layer_settings.h"
|
||||
#include <vector>
|
||||
|
||||
#include <string>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
VkResult vkuGetLayerSettingValue(VkuLayerSettingSet layerSettingSet, const char *pSettingName, bool &settingValue);
|
||||
|
||||
|
|
|
@ -9,6 +9,8 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
#include <array>
|
||||
#include <functional>
|
||||
#include <mutex>
|
||||
|
|
|
@ -7,17 +7,19 @@
|
|||
// Author(s):
|
||||
// - Christophe Riccio <christophe@lunarg.com>
|
||||
#include "vulkan/layer/vk_layer_settings.h"
|
||||
#include "layer_settings_util.hpp"
|
||||
#include "layer_settings_manager.hpp"
|
||||
#include "layer_settings_util.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <charconv>
|
||||
#include <cstdlib>
|
||||
#include <algorithm>
|
||||
#include <cassert>
|
||||
#include <cstring>
|
||||
#include <cctype>
|
||||
#include <cstring>
|
||||
#include <charconv>
|
||||
#include <cstdint>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <cstring>
|
||||
#include <memory>
|
||||
#include <system_error>
|
||||
#include <unordered_map>
|
||||
|
||||
// This is used only for unit tests in test_layer_setting_file
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <vulkan/utility/vk_safe_struct.hpp>
|
||||
#include <vulkan/utility/vk_struct_helper.hpp>
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
||||
namespace vku {
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <vulkan/utility/vk_safe_struct.hpp>
|
||||
#include <vulkan/utility/vk_struct_helper.hpp>
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
||||
namespace vku {
|
||||
|
|
|
@ -17,6 +17,7 @@
|
|||
#include <vulkan/utility/vk_safe_struct.hpp>
|
||||
#include <vulkan/utility/vk_struct_helper.hpp>
|
||||
|
||||
#include <cstddef>
|
||||
#include <cstring>
|
||||
|
||||
namespace vku {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue