Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions include/vulkan/utility/vk_safe_struct.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@

#pragma once
#include <vulkan/vulkan.h>
#include <algorithm>

#include <vulkan/utility/vk_safe_struct_utils.hpp>

namespace vku {
Expand Down
1 change: 0 additions & 1 deletion include/vulkan/utility/vk_safe_struct_utils.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
#include <cstdlib>
#include <cstring>
#include <functional>
#include <vector>

namespace vku {

Expand Down
5 changes: 1 addition & 4 deletions scripts/generators/safe_struct_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,6 @@ def generateHeader(self):
out.append('''
#pragma once
#include <vulkan/vulkan.h>
#include <algorithm>

#include <vulkan/utility/vk_safe_struct_utils.hpp>

namespace vku {
Expand Down Expand Up @@ -280,7 +278,6 @@ def generateUtil(self):
#include <vulkan/vk_layer.h>
#include <vulkan/utility/vk_safe_struct.hpp>

#include <vector>
#include <cstring>

namespace vku {
Expand Down Expand Up @@ -584,7 +581,7 @@ def qfi_construct(item, member):

if member.pointer and ('PFN_' in member.type or member.name in self.unused_params.get(struct.name, [])):
m_shallow_copy = True

if member.name == 'pNext':
copy_pnext = 'pNext = SafePnextCopy(in_struct->pNext, copy_state);\n'
copy_pnext_if = '''
Expand Down
1 change: 0 additions & 1 deletion src/vulkan/vk_safe_struct_utils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
#include <vulkan/vk_layer.h>
#include <vulkan/utility/vk_safe_struct.hpp>

#include <vector>
#include <cstring>

namespace vku {
Expand Down
Loading