refactor: remove default constructors

not sure if this is a good idea, but seeing how I've messed up vector allocations in the past, this might prevent bugs from happening
This commit is contained in:
PancakeTAS 2025-09-10 17:53:42 +02:00
parent 3c7c5a4413
commit 7137310e53
No known key found for this signature in database
13 changed files with 0 additions and 26 deletions

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class Buffer {
public:
Buffer() noexcept = default;
///
/// Create the buffer.
///

View file

@ -37,8 +37,6 @@ namespace VK::Core {
///
class CommandBuffer {
public:
CommandBuffer() noexcept = default;
///
/// Create the command buffer.
///

View file

@ -15,8 +15,6 @@ namespace VK::Core {
///
class CommandPool {
public:
CommandPool() noexcept = default;
///
/// Create the command pool.
///

View file

@ -15,8 +15,6 @@ namespace VK::Core {
///
class DescriptorPool {
public:
DescriptorPool() noexcept = default;
///
/// Create the descriptor pool.
///

View file

@ -21,8 +21,6 @@ namespace VK::Core {
///
class DescriptorSet {
public:
DescriptorSet() noexcept = default;
///
/// Create the descriptor set.
///

View file

@ -18,8 +18,6 @@ namespace VK::Core {
///
class Device {
public:
Device() noexcept = default;
///
/// Create the device.
///

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class Fence {
public:
Fence() noexcept = default;
///
/// Create the fence.
///

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class Image {
public:
Image() noexcept = default;
///
/// Create the image.
///

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class Pipeline {
public:
Pipeline() noexcept = default;
///
/// Create a compute pipeline.
///

View file

@ -15,8 +15,6 @@ namespace VK::Core {
///
class Sampler {
public:
Sampler() noexcept = default;
///
/// Create the sampler.
///

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class Semaphore {
public:
Semaphore() noexcept = default;
///
/// Create/Import a semaphore.
///

View file

@ -18,8 +18,6 @@ namespace VK::Core {
///
class ShaderModule {
public:
ShaderModule() noexcept = default;
///
/// Create the shader module.
///

View file

@ -16,8 +16,6 @@ namespace VK::Core {
///
class TimelineSemaphore {
public:
TimelineSemaphore() noexcept = default;
///
/// Create the timeline semaphore.
///