TMP / Removed boost dependency

This commit is contained in:
2023-03-11 20:43:28 +01:00
parent 7e39188f80
commit 2e61b990f7
8 changed files with 22 additions and 17 deletions

View File

@ -1,6 +1,5 @@
#pragma once
#include "boost/core/noncopyable.hpp"
#include "vulkan_common.h"
#include "vulkan_descriptor_set.h"
#include "vulkan_image.h"

View File

@ -1,6 +1,5 @@
#pragma once
#include <boost/core/noncopyable.hpp>
#include <vector>
#include "vulkan_common.h"

View File

@ -17,7 +17,7 @@
#include <glm/vec3.hpp>
#include <glm/vec4.hpp>
#include <boost/core/noncopyable.hpp>
#include "../../main/util.h"
#include "../../main/logging.h"
#include "../../main/rendering/graphics_interface.h"
@ -54,7 +54,7 @@ struct CstrCompare {
using CstrHashSet = std::unordered_set<const char *, CstrHash, CstrEqual>;
} // namespace CstrUtils
class VkObjectWrapper : private boost::noncopyable {
class VkObjectWrapper : private progressia::main::NonCopyable {
// empty
};

View File

@ -1,6 +1,5 @@
#pragma once
#include <boost/core/noncopyable.hpp>
#include <vector>
#include "vulkan_buffer.h"