mirror of
https://github.com/PancakeTAS/lsfg-vk.git
synced 2025-10-30 07:01:10 +00:00
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:
parent
3c7c5a4413
commit
7137310e53
13 changed files with 0 additions and 26 deletions
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Buffer {
|
||||
public:
|
||||
Buffer() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the buffer.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -37,8 +37,6 @@ namespace VK::Core {
|
|||
///
|
||||
class CommandBuffer {
|
||||
public:
|
||||
CommandBuffer() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the command buffer.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -15,8 +15,6 @@ namespace VK::Core {
|
|||
///
|
||||
class CommandPool {
|
||||
public:
|
||||
CommandPool() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the command pool.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -15,8 +15,6 @@ namespace VK::Core {
|
|||
///
|
||||
class DescriptorPool {
|
||||
public:
|
||||
DescriptorPool() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the descriptor pool.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -21,8 +21,6 @@ namespace VK::Core {
|
|||
///
|
||||
class DescriptorSet {
|
||||
public:
|
||||
DescriptorSet() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the descriptor set.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -18,8 +18,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Device {
|
||||
public:
|
||||
Device() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the device.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Fence {
|
||||
public:
|
||||
Fence() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the fence.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Image {
|
||||
public:
|
||||
Image() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the image.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Pipeline {
|
||||
public:
|
||||
Pipeline() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create a compute pipeline.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -15,8 +15,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Sampler {
|
||||
public:
|
||||
Sampler() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the sampler.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class Semaphore {
|
||||
public:
|
||||
Semaphore() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create/Import a semaphore.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -18,8 +18,6 @@ namespace VK::Core {
|
|||
///
|
||||
class ShaderModule {
|
||||
public:
|
||||
ShaderModule() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the shader module.
|
||||
///
|
||||
|
|
|
|||
|
|
@ -16,8 +16,6 @@ namespace VK::Core {
|
|||
///
|
||||
class TimelineSemaphore {
|
||||
public:
|
||||
TimelineSemaphore() noexcept = default;
|
||||
|
||||
///
|
||||
/// Create the timeline semaphore.
|
||||
///
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue