mirror of
https://github.com/KhronosGroup/Vulkan-Hpp
synced 2024-11-08 13:40:08 +00:00
Try to workaround a possible bug with clang and gcc... (#1902)
This commit is contained in:
parent
45d90067ee
commit
842406f2a6
@ -7803,7 +7803,7 @@ ${enter} class ${className}
|
||||
static VULKAN_HPP_CONST_OR_CONSTEXPR VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT debugReportObjectType = VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::${debugReportObjectType};
|
||||
|
||||
public:
|
||||
${className}() = default;
|
||||
${className}() VULKAN_HPP_NOEXCEPT {}; // = default - try to workaround a compiler issue
|
||||
${className}( ${className} const & rhs ) = default;
|
||||
${className} & operator=( ${className} const & rhs ) = default;
|
||||
${className}( ${className} && rhs ) = default;
|
||||
|
@ -2419,7 +2419,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSurfaceKHR;
|
||||
|
||||
public:
|
||||
SurfaceKHR() = default;
|
||||
SurfaceKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SurfaceKHR( SurfaceKHR const & rhs ) = default;
|
||||
SurfaceKHR & operator=( SurfaceKHR const & rhs ) = default;
|
||||
SurfaceKHR( SurfaceKHR && rhs ) = default;
|
||||
@ -2518,7 +2518,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDebugReportCallbackEXT;
|
||||
|
||||
public:
|
||||
DebugReportCallbackEXT() = default;
|
||||
DebugReportCallbackEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DebugReportCallbackEXT( DebugReportCallbackEXT const & rhs ) = default;
|
||||
DebugReportCallbackEXT & operator=( DebugReportCallbackEXT const & rhs ) = default;
|
||||
DebugReportCallbackEXT( DebugReportCallbackEXT && rhs ) = default;
|
||||
@ -2620,7 +2620,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
DebugUtilsMessengerEXT() = default;
|
||||
DebugUtilsMessengerEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DebugUtilsMessengerEXT( DebugUtilsMessengerEXT const & rhs ) = default;
|
||||
DebugUtilsMessengerEXT & operator=( DebugUtilsMessengerEXT const & rhs ) = default;
|
||||
DebugUtilsMessengerEXT( DebugUtilsMessengerEXT && rhs ) = default;
|
||||
@ -2716,7 +2716,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayKHR;
|
||||
|
||||
public:
|
||||
DisplayKHR() = default;
|
||||
DisplayKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DisplayKHR( DisplayKHR const & rhs ) = default;
|
||||
DisplayKHR & operator=( DisplayKHR const & rhs ) = default;
|
||||
DisplayKHR( DisplayKHR && rhs ) = default;
|
||||
@ -2815,7 +2815,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSwapchainKHR;
|
||||
|
||||
public:
|
||||
SwapchainKHR() = default;
|
||||
SwapchainKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SwapchainKHR( SwapchainKHR const & rhs ) = default;
|
||||
SwapchainKHR & operator=( SwapchainKHR const & rhs ) = default;
|
||||
SwapchainKHR( SwapchainKHR && rhs ) = default;
|
||||
@ -2914,7 +2914,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSemaphore;
|
||||
|
||||
public:
|
||||
Semaphore() = default;
|
||||
Semaphore() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Semaphore( Semaphore const & rhs ) = default;
|
||||
Semaphore & operator=( Semaphore const & rhs ) = default;
|
||||
Semaphore( Semaphore && rhs ) = default;
|
||||
@ -3013,7 +3013,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFence;
|
||||
|
||||
public:
|
||||
Fence() = default;
|
||||
Fence() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Fence( Fence const & rhs ) = default;
|
||||
Fence & operator=( Fence const & rhs ) = default;
|
||||
Fence( Fence && rhs ) = default;
|
||||
@ -3112,7 +3112,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
PerformanceConfigurationINTEL() = default;
|
||||
PerformanceConfigurationINTEL() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PerformanceConfigurationINTEL( PerformanceConfigurationINTEL const & rhs ) = default;
|
||||
PerformanceConfigurationINTEL & operator=( PerformanceConfigurationINTEL const & rhs ) = default;
|
||||
PerformanceConfigurationINTEL( PerformanceConfigurationINTEL && rhs ) = default;
|
||||
@ -3208,7 +3208,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueryPool;
|
||||
|
||||
public:
|
||||
QueryPool() = default;
|
||||
QueryPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
QueryPool( QueryPool const & rhs ) = default;
|
||||
QueryPool & operator=( QueryPool const & rhs ) = default;
|
||||
QueryPool( QueryPool && rhs ) = default;
|
||||
@ -3307,7 +3307,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBuffer;
|
||||
|
||||
public:
|
||||
Buffer() = default;
|
||||
Buffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Buffer( Buffer const & rhs ) = default;
|
||||
Buffer & operator=( Buffer const & rhs ) = default;
|
||||
Buffer( Buffer && rhs ) = default;
|
||||
@ -3406,7 +3406,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineLayout;
|
||||
|
||||
public:
|
||||
PipelineLayout() = default;
|
||||
PipelineLayout() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PipelineLayout( PipelineLayout const & rhs ) = default;
|
||||
PipelineLayout & operator=( PipelineLayout const & rhs ) = default;
|
||||
PipelineLayout( PipelineLayout && rhs ) = default;
|
||||
@ -3505,7 +3505,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSet;
|
||||
|
||||
public:
|
||||
DescriptorSet() = default;
|
||||
DescriptorSet() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorSet( DescriptorSet const & rhs ) = default;
|
||||
DescriptorSet & operator=( DescriptorSet const & rhs ) = default;
|
||||
DescriptorSet( DescriptorSet && rhs ) = default;
|
||||
@ -3604,7 +3604,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImageView;
|
||||
|
||||
public:
|
||||
ImageView() = default;
|
||||
ImageView() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ImageView( ImageView const & rhs ) = default;
|
||||
ImageView & operator=( ImageView const & rhs ) = default;
|
||||
ImageView( ImageView && rhs ) = default;
|
||||
@ -3703,7 +3703,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipeline;
|
||||
|
||||
public:
|
||||
Pipeline() = default;
|
||||
Pipeline() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Pipeline( Pipeline const & rhs ) = default;
|
||||
Pipeline & operator=( Pipeline const & rhs ) = default;
|
||||
Pipeline( Pipeline && rhs ) = default;
|
||||
@ -3802,7 +3802,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
ShaderEXT() = default;
|
||||
ShaderEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ShaderEXT( ShaderEXT const & rhs ) = default;
|
||||
ShaderEXT & operator=( ShaderEXT const & rhs ) = default;
|
||||
ShaderEXT( ShaderEXT && rhs ) = default;
|
||||
@ -3895,7 +3895,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImage;
|
||||
|
||||
public:
|
||||
Image() = default;
|
||||
Image() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Image( Image const & rhs ) = default;
|
||||
Image & operator=( Image const & rhs ) = default;
|
||||
Image( Image && rhs ) = default;
|
||||
@ -3994,7 +3994,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureNV;
|
||||
|
||||
public:
|
||||
AccelerationStructureNV() = default;
|
||||
AccelerationStructureNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
AccelerationStructureNV( AccelerationStructureNV const & rhs ) = default;
|
||||
AccelerationStructureNV & operator=( AccelerationStructureNV const & rhs ) = default;
|
||||
AccelerationStructureNV( AccelerationStructureNV && rhs ) = default;
|
||||
@ -4096,7 +4096,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
OpticalFlowSessionNV() = default;
|
||||
OpticalFlowSessionNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
OpticalFlowSessionNV( OpticalFlowSessionNV const & rhs ) = default;
|
||||
OpticalFlowSessionNV & operator=( OpticalFlowSessionNV const & rhs ) = default;
|
||||
OpticalFlowSessionNV( OpticalFlowSessionNV && rhs ) = default;
|
||||
@ -4192,7 +4192,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorUpdateTemplate;
|
||||
|
||||
public:
|
||||
DescriptorUpdateTemplate() = default;
|
||||
DescriptorUpdateTemplate() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorUpdateTemplate( DescriptorUpdateTemplate const & rhs ) = default;
|
||||
DescriptorUpdateTemplate & operator=( DescriptorUpdateTemplate const & rhs ) = default;
|
||||
DescriptorUpdateTemplate( DescriptorUpdateTemplate && rhs ) = default;
|
||||
@ -4296,7 +4296,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eEvent;
|
||||
|
||||
public:
|
||||
Event() = default;
|
||||
Event() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Event( Event const & rhs ) = default;
|
||||
Event & operator=( Event const & rhs ) = default;
|
||||
Event( Event && rhs ) = default;
|
||||
@ -4395,7 +4395,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eAccelerationStructureKHR;
|
||||
|
||||
public:
|
||||
AccelerationStructureKHR() = default;
|
||||
AccelerationStructureKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
AccelerationStructureKHR( AccelerationStructureKHR const & rhs ) = default;
|
||||
AccelerationStructureKHR & operator=( AccelerationStructureKHR const & rhs ) = default;
|
||||
AccelerationStructureKHR( AccelerationStructureKHR && rhs ) = default;
|
||||
@ -4497,7 +4497,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
MicromapEXT() = default;
|
||||
MicromapEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
MicromapEXT( MicromapEXT const & rhs ) = default;
|
||||
MicromapEXT & operator=( MicromapEXT const & rhs ) = default;
|
||||
MicromapEXT( MicromapEXT && rhs ) = default;
|
||||
@ -4590,7 +4590,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandBuffer;
|
||||
|
||||
public:
|
||||
CommandBuffer() = default;
|
||||
CommandBuffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CommandBuffer( CommandBuffer const & rhs ) = default;
|
||||
CommandBuffer & operator=( CommandBuffer const & rhs ) = default;
|
||||
CommandBuffer( CommandBuffer && rhs ) = default;
|
||||
@ -6990,7 +6990,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDeviceMemory;
|
||||
|
||||
public:
|
||||
DeviceMemory() = default;
|
||||
DeviceMemory() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DeviceMemory( DeviceMemory const & rhs ) = default;
|
||||
DeviceMemory & operator=( DeviceMemory const & rhs ) = default;
|
||||
DeviceMemory( DeviceMemory && rhs ) = default;
|
||||
@ -7089,7 +7089,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
VideoSessionKHR() = default;
|
||||
VideoSessionKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
VideoSessionKHR( VideoSessionKHR const & rhs ) = default;
|
||||
VideoSessionKHR & operator=( VideoSessionKHR const & rhs ) = default;
|
||||
VideoSessionKHR( VideoSessionKHR && rhs ) = default;
|
||||
@ -7182,7 +7182,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
DeferredOperationKHR() = default;
|
||||
DeferredOperationKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DeferredOperationKHR( DeferredOperationKHR const & rhs ) = default;
|
||||
DeferredOperationKHR & operator=( DeferredOperationKHR const & rhs ) = default;
|
||||
DeferredOperationKHR( DeferredOperationKHR && rhs ) = default;
|
||||
@ -7279,7 +7279,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferCollectionFUCHSIA;
|
||||
|
||||
public:
|
||||
BufferCollectionFUCHSIA() = default;
|
||||
BufferCollectionFUCHSIA() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
BufferCollectionFUCHSIA( BufferCollectionFUCHSIA const & rhs ) = default;
|
||||
BufferCollectionFUCHSIA & operator=( BufferCollectionFUCHSIA const & rhs ) = default;
|
||||
BufferCollectionFUCHSIA( BufferCollectionFUCHSIA && rhs ) = default;
|
||||
@ -7382,7 +7382,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferView;
|
||||
|
||||
public:
|
||||
BufferView() = default;
|
||||
BufferView() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
BufferView( BufferView const & rhs ) = default;
|
||||
BufferView & operator=( BufferView const & rhs ) = default;
|
||||
BufferView( BufferView && rhs ) = default;
|
||||
@ -7481,7 +7481,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandPool;
|
||||
|
||||
public:
|
||||
CommandPool() = default;
|
||||
CommandPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CommandPool( CommandPool const & rhs ) = default;
|
||||
CommandPool & operator=( CommandPool const & rhs ) = default;
|
||||
CommandPool( CommandPool && rhs ) = default;
|
||||
@ -7580,7 +7580,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineCache;
|
||||
|
||||
public:
|
||||
PipelineCache() = default;
|
||||
PipelineCache() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PipelineCache( PipelineCache const & rhs ) = default;
|
||||
PipelineCache & operator=( PipelineCache const & rhs ) = default;
|
||||
PipelineCache( PipelineCache && rhs ) = default;
|
||||
@ -7679,7 +7679,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuFunctionNVX;
|
||||
|
||||
public:
|
||||
CuFunctionNVX() = default;
|
||||
CuFunctionNVX() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CuFunctionNVX( CuFunctionNVX const & rhs ) = default;
|
||||
CuFunctionNVX & operator=( CuFunctionNVX const & rhs ) = default;
|
||||
CuFunctionNVX( CuFunctionNVX && rhs ) = default;
|
||||
@ -7778,7 +7778,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCuModuleNVX;
|
||||
|
||||
public:
|
||||
CuModuleNVX() = default;
|
||||
CuModuleNVX() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CuModuleNVX( CuModuleNVX const & rhs ) = default;
|
||||
CuModuleNVX & operator=( CuModuleNVX const & rhs ) = default;
|
||||
CuModuleNVX( CuModuleNVX && rhs ) = default;
|
||||
@ -7878,7 +7878,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCudaFunctionNV;
|
||||
|
||||
public:
|
||||
CudaFunctionNV() = default;
|
||||
CudaFunctionNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CudaFunctionNV( CudaFunctionNV const & rhs ) = default;
|
||||
CudaFunctionNV & operator=( CudaFunctionNV const & rhs ) = default;
|
||||
CudaFunctionNV( CudaFunctionNV && rhs ) = default;
|
||||
@ -7979,7 +7979,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCudaModuleNV;
|
||||
|
||||
public:
|
||||
CudaModuleNV() = default;
|
||||
CudaModuleNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CudaModuleNV( CudaModuleNV const & rhs ) = default;
|
||||
CudaModuleNV & operator=( CudaModuleNV const & rhs ) = default;
|
||||
CudaModuleNV( CudaModuleNV && rhs ) = default;
|
||||
@ -8079,7 +8079,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorPool;
|
||||
|
||||
public:
|
||||
DescriptorPool() = default;
|
||||
DescriptorPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorPool( DescriptorPool const & rhs ) = default;
|
||||
DescriptorPool & operator=( DescriptorPool const & rhs ) = default;
|
||||
DescriptorPool( DescriptorPool && rhs ) = default;
|
||||
@ -8178,7 +8178,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSetLayout;
|
||||
|
||||
public:
|
||||
DescriptorSetLayout() = default;
|
||||
DescriptorSetLayout() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorSetLayout( DescriptorSetLayout const & rhs ) = default;
|
||||
DescriptorSetLayout & operator=( DescriptorSetLayout const & rhs ) = default;
|
||||
DescriptorSetLayout( DescriptorSetLayout && rhs ) = default;
|
||||
@ -8280,7 +8280,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFramebuffer;
|
||||
|
||||
public:
|
||||
Framebuffer() = default;
|
||||
Framebuffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Framebuffer( Framebuffer const & rhs ) = default;
|
||||
Framebuffer & operator=( Framebuffer const & rhs ) = default;
|
||||
Framebuffer( Framebuffer && rhs ) = default;
|
||||
@ -8379,7 +8379,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
IndirectCommandsLayoutNV() = default;
|
||||
IndirectCommandsLayoutNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
IndirectCommandsLayoutNV( IndirectCommandsLayoutNV const & rhs ) = default;
|
||||
IndirectCommandsLayoutNV & operator=( IndirectCommandsLayoutNV const & rhs ) = default;
|
||||
IndirectCommandsLayoutNV( IndirectCommandsLayoutNV && rhs ) = default;
|
||||
@ -8475,7 +8475,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
PrivateDataSlot() = default;
|
||||
PrivateDataSlot() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PrivateDataSlot( PrivateDataSlot const & rhs ) = default;
|
||||
PrivateDataSlot & operator=( PrivateDataSlot const & rhs ) = default;
|
||||
PrivateDataSlot( PrivateDataSlot && rhs ) = default;
|
||||
@ -8570,7 +8570,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eRenderPass;
|
||||
|
||||
public:
|
||||
RenderPass() = default;
|
||||
RenderPass() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
RenderPass( RenderPass const & rhs ) = default;
|
||||
RenderPass & operator=( RenderPass const & rhs ) = default;
|
||||
RenderPass( RenderPass && rhs ) = default;
|
||||
@ -8669,7 +8669,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSampler;
|
||||
|
||||
public:
|
||||
Sampler() = default;
|
||||
Sampler() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Sampler( Sampler const & rhs ) = default;
|
||||
Sampler & operator=( Sampler const & rhs ) = default;
|
||||
Sampler( Sampler && rhs ) = default;
|
||||
@ -8768,7 +8768,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSamplerYcbcrConversion;
|
||||
|
||||
public:
|
||||
SamplerYcbcrConversion() = default;
|
||||
SamplerYcbcrConversion() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SamplerYcbcrConversion( SamplerYcbcrConversion const & rhs ) = default;
|
||||
SamplerYcbcrConversion & operator=( SamplerYcbcrConversion const & rhs ) = default;
|
||||
SamplerYcbcrConversion( SamplerYcbcrConversion && rhs ) = default;
|
||||
@ -8872,7 +8872,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eShaderModule;
|
||||
|
||||
public:
|
||||
ShaderModule() = default;
|
||||
ShaderModule() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ShaderModule( ShaderModule const & rhs ) = default;
|
||||
ShaderModule & operator=( ShaderModule const & rhs ) = default;
|
||||
ShaderModule( ShaderModule && rhs ) = default;
|
||||
@ -8971,7 +8971,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eValidationCacheEXT;
|
||||
|
||||
public:
|
||||
ValidationCacheEXT() = default;
|
||||
ValidationCacheEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ValidationCacheEXT( ValidationCacheEXT const & rhs ) = default;
|
||||
ValidationCacheEXT & operator=( ValidationCacheEXT const & rhs ) = default;
|
||||
ValidationCacheEXT( ValidationCacheEXT && rhs ) = default;
|
||||
@ -9072,7 +9072,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
VideoSessionParametersKHR() = default;
|
||||
VideoSessionParametersKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
VideoSessionParametersKHR( VideoSessionParametersKHR const & rhs ) = default;
|
||||
VideoSessionParametersKHR & operator=( VideoSessionParametersKHR const & rhs ) = default;
|
||||
VideoSessionParametersKHR( VideoSessionParametersKHR && rhs ) = default;
|
||||
@ -9168,7 +9168,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueue;
|
||||
|
||||
public:
|
||||
Queue() = default;
|
||||
Queue() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Queue( Queue const & rhs ) = default;
|
||||
Queue & operator=( Queue const & rhs ) = default;
|
||||
Queue( Queue && rhs ) = default;
|
||||
@ -9425,7 +9425,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDevice;
|
||||
|
||||
public:
|
||||
Device() = default;
|
||||
Device() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Device( Device const & rhs ) = default;
|
||||
Device & operator=( Device const & rhs ) = default;
|
||||
Device( Device && rhs ) = default;
|
||||
@ -14584,7 +14584,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayModeKHR;
|
||||
|
||||
public:
|
||||
DisplayModeKHR() = default;
|
||||
DisplayModeKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DisplayModeKHR( DisplayModeKHR const & rhs ) = default;
|
||||
DisplayModeKHR & operator=( DisplayModeKHR const & rhs ) = default;
|
||||
DisplayModeKHR( DisplayModeKHR && rhs ) = default;
|
||||
@ -14683,7 +14683,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePhysicalDevice;
|
||||
|
||||
public:
|
||||
PhysicalDevice() = default;
|
||||
PhysicalDevice() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PhysicalDevice( PhysicalDevice const & rhs ) = default;
|
||||
PhysicalDevice & operator=( PhysicalDevice const & rhs ) = default;
|
||||
PhysicalDevice( PhysicalDevice && rhs ) = default;
|
||||
@ -16117,7 +16117,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eInstance;
|
||||
|
||||
public:
|
||||
Instance() = default;
|
||||
Instance() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Instance( Instance const & rhs ) = default;
|
||||
Instance & operator=( Instance const & rhs ) = default;
|
||||
Instance( Instance && rhs ) = default;
|
||||
|
@ -1019,7 +1019,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
DebugUtilsMessengerEXT() = default;
|
||||
DebugUtilsMessengerEXT() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DebugUtilsMessengerEXT( DebugUtilsMessengerEXT const & rhs ) = default;
|
||||
DebugUtilsMessengerEXT & operator=( DebugUtilsMessengerEXT const & rhs ) = default;
|
||||
DebugUtilsMessengerEXT( DebugUtilsMessengerEXT && rhs ) = default;
|
||||
@ -1115,7 +1115,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSurfaceKHR;
|
||||
|
||||
public:
|
||||
SurfaceKHR() = default;
|
||||
SurfaceKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SurfaceKHR( SurfaceKHR const & rhs ) = default;
|
||||
SurfaceKHR & operator=( SurfaceKHR const & rhs ) = default;
|
||||
SurfaceKHR( SurfaceKHR && rhs ) = default;
|
||||
@ -1214,7 +1214,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSwapchainKHR;
|
||||
|
||||
public:
|
||||
SwapchainKHR() = default;
|
||||
SwapchainKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SwapchainKHR( SwapchainKHR const & rhs ) = default;
|
||||
SwapchainKHR & operator=( SwapchainKHR const & rhs ) = default;
|
||||
SwapchainKHR( SwapchainKHR && rhs ) = default;
|
||||
@ -1313,7 +1313,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSemaphore;
|
||||
|
||||
public:
|
||||
Semaphore() = default;
|
||||
Semaphore() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Semaphore( Semaphore const & rhs ) = default;
|
||||
Semaphore & operator=( Semaphore const & rhs ) = default;
|
||||
Semaphore( Semaphore && rhs ) = default;
|
||||
@ -1412,7 +1412,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFence;
|
||||
|
||||
public:
|
||||
Fence() = default;
|
||||
Fence() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Fence( Fence const & rhs ) = default;
|
||||
Fence & operator=( Fence const & rhs ) = default;
|
||||
Fence( Fence && rhs ) = default;
|
||||
@ -1511,7 +1511,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueryPool;
|
||||
|
||||
public:
|
||||
QueryPool() = default;
|
||||
QueryPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
QueryPool( QueryPool const & rhs ) = default;
|
||||
QueryPool & operator=( QueryPool const & rhs ) = default;
|
||||
QueryPool( QueryPool && rhs ) = default;
|
||||
@ -1610,7 +1610,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineLayout;
|
||||
|
||||
public:
|
||||
PipelineLayout() = default;
|
||||
PipelineLayout() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PipelineLayout( PipelineLayout const & rhs ) = default;
|
||||
PipelineLayout & operator=( PipelineLayout const & rhs ) = default;
|
||||
PipelineLayout( PipelineLayout && rhs ) = default;
|
||||
@ -1709,7 +1709,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSet;
|
||||
|
||||
public:
|
||||
DescriptorSet() = default;
|
||||
DescriptorSet() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorSet( DescriptorSet const & rhs ) = default;
|
||||
DescriptorSet & operator=( DescriptorSet const & rhs ) = default;
|
||||
DescriptorSet( DescriptorSet && rhs ) = default;
|
||||
@ -1808,7 +1808,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBuffer;
|
||||
|
||||
public:
|
||||
Buffer() = default;
|
||||
Buffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Buffer( Buffer const & rhs ) = default;
|
||||
Buffer & operator=( Buffer const & rhs ) = default;
|
||||
Buffer( Buffer && rhs ) = default;
|
||||
@ -1907,7 +1907,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipeline;
|
||||
|
||||
public:
|
||||
Pipeline() = default;
|
||||
Pipeline() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Pipeline( Pipeline const & rhs ) = default;
|
||||
Pipeline & operator=( Pipeline const & rhs ) = default;
|
||||
Pipeline( Pipeline && rhs ) = default;
|
||||
@ -2006,7 +2006,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImage;
|
||||
|
||||
public:
|
||||
Image() = default;
|
||||
Image() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Image( Image const & rhs ) = default;
|
||||
Image & operator=( Image const & rhs ) = default;
|
||||
Image( Image && rhs ) = default;
|
||||
@ -2105,7 +2105,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eEvent;
|
||||
|
||||
public:
|
||||
Event() = default;
|
||||
Event() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Event( Event const & rhs ) = default;
|
||||
Event & operator=( Event const & rhs ) = default;
|
||||
Event( Event && rhs ) = default;
|
||||
@ -2204,7 +2204,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandBuffer;
|
||||
|
||||
public:
|
||||
CommandBuffer() = default;
|
||||
CommandBuffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CommandBuffer( CommandBuffer const & rhs ) = default;
|
||||
CommandBuffer & operator=( CommandBuffer const & rhs ) = default;
|
||||
CommandBuffer( CommandBuffer && rhs ) = default;
|
||||
@ -3354,7 +3354,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDeviceMemory;
|
||||
|
||||
public:
|
||||
DeviceMemory() = default;
|
||||
DeviceMemory() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DeviceMemory( DeviceMemory const & rhs ) = default;
|
||||
DeviceMemory & operator=( DeviceMemory const & rhs ) = default;
|
||||
DeviceMemory( DeviceMemory && rhs ) = default;
|
||||
@ -3453,7 +3453,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eBufferView;
|
||||
|
||||
public:
|
||||
BufferView() = default;
|
||||
BufferView() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
BufferView( BufferView const & rhs ) = default;
|
||||
BufferView & operator=( BufferView const & rhs ) = default;
|
||||
BufferView( BufferView && rhs ) = default;
|
||||
@ -3552,7 +3552,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eCommandPool;
|
||||
|
||||
public:
|
||||
CommandPool() = default;
|
||||
CommandPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
CommandPool( CommandPool const & rhs ) = default;
|
||||
CommandPool & operator=( CommandPool const & rhs ) = default;
|
||||
CommandPool( CommandPool && rhs ) = default;
|
||||
@ -3651,7 +3651,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePipelineCache;
|
||||
|
||||
public:
|
||||
PipelineCache() = default;
|
||||
PipelineCache() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PipelineCache( PipelineCache const & rhs ) = default;
|
||||
PipelineCache & operator=( PipelineCache const & rhs ) = default;
|
||||
PipelineCache( PipelineCache && rhs ) = default;
|
||||
@ -3750,7 +3750,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorPool;
|
||||
|
||||
public:
|
||||
DescriptorPool() = default;
|
||||
DescriptorPool() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorPool( DescriptorPool const & rhs ) = default;
|
||||
DescriptorPool & operator=( DescriptorPool const & rhs ) = default;
|
||||
DescriptorPool( DescriptorPool && rhs ) = default;
|
||||
@ -3849,7 +3849,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDescriptorSetLayout;
|
||||
|
||||
public:
|
||||
DescriptorSetLayout() = default;
|
||||
DescriptorSetLayout() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DescriptorSetLayout( DescriptorSetLayout const & rhs ) = default;
|
||||
DescriptorSetLayout & operator=( DescriptorSetLayout const & rhs ) = default;
|
||||
DescriptorSetLayout( DescriptorSetLayout && rhs ) = default;
|
||||
@ -3951,7 +3951,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eFramebuffer;
|
||||
|
||||
public:
|
||||
Framebuffer() = default;
|
||||
Framebuffer() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Framebuffer( Framebuffer const & rhs ) = default;
|
||||
Framebuffer & operator=( Framebuffer const & rhs ) = default;
|
||||
Framebuffer( Framebuffer && rhs ) = default;
|
||||
@ -4050,7 +4050,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eImageView;
|
||||
|
||||
public:
|
||||
ImageView() = default;
|
||||
ImageView() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ImageView( ImageView const & rhs ) = default;
|
||||
ImageView & operator=( ImageView const & rhs ) = default;
|
||||
ImageView( ImageView && rhs ) = default;
|
||||
@ -4149,7 +4149,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
PrivateDataSlot() = default;
|
||||
PrivateDataSlot() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PrivateDataSlot( PrivateDataSlot const & rhs ) = default;
|
||||
PrivateDataSlot & operator=( PrivateDataSlot const & rhs ) = default;
|
||||
PrivateDataSlot( PrivateDataSlot && rhs ) = default;
|
||||
@ -4244,7 +4244,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eRenderPass;
|
||||
|
||||
public:
|
||||
RenderPass() = default;
|
||||
RenderPass() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
RenderPass( RenderPass const & rhs ) = default;
|
||||
RenderPass & operator=( RenderPass const & rhs ) = default;
|
||||
RenderPass( RenderPass && rhs ) = default;
|
||||
@ -4343,7 +4343,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSampler;
|
||||
|
||||
public:
|
||||
Sampler() = default;
|
||||
Sampler() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Sampler( Sampler const & rhs ) = default;
|
||||
Sampler & operator=( Sampler const & rhs ) = default;
|
||||
Sampler( Sampler && rhs ) = default;
|
||||
@ -4442,7 +4442,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eSamplerYcbcrConversion;
|
||||
|
||||
public:
|
||||
SamplerYcbcrConversion() = default;
|
||||
SamplerYcbcrConversion() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SamplerYcbcrConversion( SamplerYcbcrConversion const & rhs ) = default;
|
||||
SamplerYcbcrConversion & operator=( SamplerYcbcrConversion const & rhs ) = default;
|
||||
SamplerYcbcrConversion( SamplerYcbcrConversion && rhs ) = default;
|
||||
@ -4547,7 +4547,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eUnknown;
|
||||
|
||||
public:
|
||||
SemaphoreSciSyncPoolNV() = default;
|
||||
SemaphoreSciSyncPoolNV() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
SemaphoreSciSyncPoolNV( SemaphoreSciSyncPoolNV const & rhs ) = default;
|
||||
SemaphoreSciSyncPoolNV & operator=( SemaphoreSciSyncPoolNV const & rhs ) = default;
|
||||
SemaphoreSciSyncPoolNV( SemaphoreSciSyncPoolNV && rhs ) = default;
|
||||
@ -4644,7 +4644,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayKHR;
|
||||
|
||||
public:
|
||||
DisplayKHR() = default;
|
||||
DisplayKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DisplayKHR( DisplayKHR const & rhs ) = default;
|
||||
DisplayKHR & operator=( DisplayKHR const & rhs ) = default;
|
||||
DisplayKHR( DisplayKHR && rhs ) = default;
|
||||
@ -4743,7 +4743,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eQueue;
|
||||
|
||||
public:
|
||||
Queue() = default;
|
||||
Queue() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Queue( Queue const & rhs ) = default;
|
||||
Queue & operator=( Queue const & rhs ) = default;
|
||||
Queue( Queue && rhs ) = default;
|
||||
@ -4944,7 +4944,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDevice;
|
||||
|
||||
public:
|
||||
Device() = default;
|
||||
Device() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Device( Device const & rhs ) = default;
|
||||
Device & operator=( Device const & rhs ) = default;
|
||||
Device( Device && rhs ) = default;
|
||||
@ -7098,7 +7098,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eDisplayModeKHR;
|
||||
|
||||
public:
|
||||
DisplayModeKHR() = default;
|
||||
DisplayModeKHR() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
DisplayModeKHR( DisplayModeKHR const & rhs ) = default;
|
||||
DisplayModeKHR & operator=( DisplayModeKHR const & rhs ) = default;
|
||||
DisplayModeKHR( DisplayModeKHR && rhs ) = default;
|
||||
@ -7197,7 +7197,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::ePhysicalDevice;
|
||||
|
||||
public:
|
||||
PhysicalDevice() = default;
|
||||
PhysicalDevice() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
PhysicalDevice( PhysicalDevice const & rhs ) = default;
|
||||
PhysicalDevice & operator=( PhysicalDevice const & rhs ) = default;
|
||||
PhysicalDevice( PhysicalDevice && rhs ) = default;
|
||||
@ -8067,7 +8067,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eInstance;
|
||||
|
||||
public:
|
||||
Instance() = default;
|
||||
Instance() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
Instance( Instance const & rhs ) = default;
|
||||
Instance & operator=( Instance const & rhs ) = default;
|
||||
Instance( Instance && rhs ) = default;
|
||||
@ -8413,7 +8413,7 @@ namespace VULKAN_HPP_NAMESPACE
|
||||
VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT::eShaderModule;
|
||||
|
||||
public:
|
||||
ShaderModule() = default;
|
||||
ShaderModule() VULKAN_HPP_NOEXCEPT{}; // = default - try to workaround a compiler issue
|
||||
ShaderModule( ShaderModule const & rhs ) = default;
|
||||
ShaderModule & operator=( ShaderModule const & rhs ) = default;
|
||||
ShaderModule( ShaderModule && rhs ) = default;
|
||||
|
Loading…
Reference in New Issue
Block a user