mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2024-10-14 16:32:17 +00:00
Cleanup and commenting on the writing part. (#98)
This commit is contained in:
parent
6f37c62592
commit
bea247fd4e
File diff suppressed because it is too large
Load Diff
@ -642,319 +642,174 @@ namespace vk
|
|||||||
|
|
||||||
using FramebufferCreateFlags = Flags<FramebufferCreateFlagBits, VkFramebufferCreateFlags>;
|
using FramebufferCreateFlags = Flags<FramebufferCreateFlagBits, VkFramebufferCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE FramebufferCreateFlags operator|( FramebufferCreateFlagBits bit0, FramebufferCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return FramebufferCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class QueryPoolCreateFlagBits
|
enum class QueryPoolCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using QueryPoolCreateFlags = Flags<QueryPoolCreateFlagBits, VkQueryPoolCreateFlags>;
|
using QueryPoolCreateFlags = Flags<QueryPoolCreateFlagBits, VkQueryPoolCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE QueryPoolCreateFlags operator|( QueryPoolCreateFlagBits bit0, QueryPoolCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return QueryPoolCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class RenderPassCreateFlagBits
|
enum class RenderPassCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using RenderPassCreateFlags = Flags<RenderPassCreateFlagBits, VkRenderPassCreateFlags>;
|
using RenderPassCreateFlags = Flags<RenderPassCreateFlagBits, VkRenderPassCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE RenderPassCreateFlags operator|( RenderPassCreateFlagBits bit0, RenderPassCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return RenderPassCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class SamplerCreateFlagBits
|
enum class SamplerCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using SamplerCreateFlags = Flags<SamplerCreateFlagBits, VkSamplerCreateFlags>;
|
using SamplerCreateFlags = Flags<SamplerCreateFlagBits, VkSamplerCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE SamplerCreateFlags operator|( SamplerCreateFlagBits bit0, SamplerCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return SamplerCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineLayoutCreateFlagBits
|
enum class PipelineLayoutCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineLayoutCreateFlags = Flags<PipelineLayoutCreateFlagBits, VkPipelineLayoutCreateFlags>;
|
using PipelineLayoutCreateFlags = Flags<PipelineLayoutCreateFlagBits, VkPipelineLayoutCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineLayoutCreateFlags operator|( PipelineLayoutCreateFlagBits bit0, PipelineLayoutCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineLayoutCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineCacheCreateFlagBits
|
enum class PipelineCacheCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineCacheCreateFlags = Flags<PipelineCacheCreateFlagBits, VkPipelineCacheCreateFlags>;
|
using PipelineCacheCreateFlags = Flags<PipelineCacheCreateFlagBits, VkPipelineCacheCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineCacheCreateFlags operator|( PipelineCacheCreateFlagBits bit0, PipelineCacheCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineCacheCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineDepthStencilStateCreateFlagBits
|
enum class PipelineDepthStencilStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineDepthStencilStateCreateFlags = Flags<PipelineDepthStencilStateCreateFlagBits, VkPipelineDepthStencilStateCreateFlags>;
|
using PipelineDepthStencilStateCreateFlags = Flags<PipelineDepthStencilStateCreateFlagBits, VkPipelineDepthStencilStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineDepthStencilStateCreateFlags operator|( PipelineDepthStencilStateCreateFlagBits bit0, PipelineDepthStencilStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineDepthStencilStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineDynamicStateCreateFlagBits
|
enum class PipelineDynamicStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineDynamicStateCreateFlags = Flags<PipelineDynamicStateCreateFlagBits, VkPipelineDynamicStateCreateFlags>;
|
using PipelineDynamicStateCreateFlags = Flags<PipelineDynamicStateCreateFlagBits, VkPipelineDynamicStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineDynamicStateCreateFlags operator|( PipelineDynamicStateCreateFlagBits bit0, PipelineDynamicStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineDynamicStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineColorBlendStateCreateFlagBits
|
enum class PipelineColorBlendStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineColorBlendStateCreateFlags = Flags<PipelineColorBlendStateCreateFlagBits, VkPipelineColorBlendStateCreateFlags>;
|
using PipelineColorBlendStateCreateFlags = Flags<PipelineColorBlendStateCreateFlagBits, VkPipelineColorBlendStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineColorBlendStateCreateFlags operator|( PipelineColorBlendStateCreateFlagBits bit0, PipelineColorBlendStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineColorBlendStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineMultisampleStateCreateFlagBits
|
enum class PipelineMultisampleStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineMultisampleStateCreateFlags = Flags<PipelineMultisampleStateCreateFlagBits, VkPipelineMultisampleStateCreateFlags>;
|
using PipelineMultisampleStateCreateFlags = Flags<PipelineMultisampleStateCreateFlagBits, VkPipelineMultisampleStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineMultisampleStateCreateFlags operator|( PipelineMultisampleStateCreateFlagBits bit0, PipelineMultisampleStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineMultisampleStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineRasterizationStateCreateFlagBits
|
enum class PipelineRasterizationStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineRasterizationStateCreateFlags = Flags<PipelineRasterizationStateCreateFlagBits, VkPipelineRasterizationStateCreateFlags>;
|
using PipelineRasterizationStateCreateFlags = Flags<PipelineRasterizationStateCreateFlagBits, VkPipelineRasterizationStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineRasterizationStateCreateFlags operator|( PipelineRasterizationStateCreateFlagBits bit0, PipelineRasterizationStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineRasterizationStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineViewportStateCreateFlagBits
|
enum class PipelineViewportStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineViewportStateCreateFlags = Flags<PipelineViewportStateCreateFlagBits, VkPipelineViewportStateCreateFlags>;
|
using PipelineViewportStateCreateFlags = Flags<PipelineViewportStateCreateFlagBits, VkPipelineViewportStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineViewportStateCreateFlags operator|( PipelineViewportStateCreateFlagBits bit0, PipelineViewportStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineViewportStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineTessellationStateCreateFlagBits
|
enum class PipelineTessellationStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineTessellationStateCreateFlags = Flags<PipelineTessellationStateCreateFlagBits, VkPipelineTessellationStateCreateFlags>;
|
using PipelineTessellationStateCreateFlags = Flags<PipelineTessellationStateCreateFlagBits, VkPipelineTessellationStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineTessellationStateCreateFlags operator|( PipelineTessellationStateCreateFlagBits bit0, PipelineTessellationStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineTessellationStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineInputAssemblyStateCreateFlagBits
|
enum class PipelineInputAssemblyStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineInputAssemblyStateCreateFlags = Flags<PipelineInputAssemblyStateCreateFlagBits, VkPipelineInputAssemblyStateCreateFlags>;
|
using PipelineInputAssemblyStateCreateFlags = Flags<PipelineInputAssemblyStateCreateFlagBits, VkPipelineInputAssemblyStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineInputAssemblyStateCreateFlags operator|( PipelineInputAssemblyStateCreateFlagBits bit0, PipelineInputAssemblyStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineInputAssemblyStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineVertexInputStateCreateFlagBits
|
enum class PipelineVertexInputStateCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineVertexInputStateCreateFlags = Flags<PipelineVertexInputStateCreateFlagBits, VkPipelineVertexInputStateCreateFlags>;
|
using PipelineVertexInputStateCreateFlags = Flags<PipelineVertexInputStateCreateFlagBits, VkPipelineVertexInputStateCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineVertexInputStateCreateFlags operator|( PipelineVertexInputStateCreateFlagBits bit0, PipelineVertexInputStateCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineVertexInputStateCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineShaderStageCreateFlagBits
|
enum class PipelineShaderStageCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineShaderStageCreateFlags = Flags<PipelineShaderStageCreateFlagBits, VkPipelineShaderStageCreateFlags>;
|
using PipelineShaderStageCreateFlags = Flags<PipelineShaderStageCreateFlagBits, VkPipelineShaderStageCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineShaderStageCreateFlags operator|( PipelineShaderStageCreateFlagBits bit0, PipelineShaderStageCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return PipelineShaderStageCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class BufferViewCreateFlagBits
|
enum class BufferViewCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using BufferViewCreateFlags = Flags<BufferViewCreateFlagBits, VkBufferViewCreateFlags>;
|
using BufferViewCreateFlags = Flags<BufferViewCreateFlagBits, VkBufferViewCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE BufferViewCreateFlags operator|( BufferViewCreateFlagBits bit0, BufferViewCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return BufferViewCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class InstanceCreateFlagBits
|
enum class InstanceCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using InstanceCreateFlags = Flags<InstanceCreateFlagBits, VkInstanceCreateFlags>;
|
using InstanceCreateFlags = Flags<InstanceCreateFlagBits, VkInstanceCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE InstanceCreateFlags operator|( InstanceCreateFlagBits bit0, InstanceCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return InstanceCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DeviceCreateFlagBits
|
enum class DeviceCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DeviceCreateFlags = Flags<DeviceCreateFlagBits, VkDeviceCreateFlags>;
|
using DeviceCreateFlags = Flags<DeviceCreateFlagBits, VkDeviceCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DeviceCreateFlags operator|( DeviceCreateFlagBits bit0, DeviceCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return DeviceCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DeviceQueueCreateFlagBits
|
enum class DeviceQueueCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DeviceQueueCreateFlags = Flags<DeviceQueueCreateFlagBits, VkDeviceQueueCreateFlags>;
|
using DeviceQueueCreateFlags = Flags<DeviceQueueCreateFlagBits, VkDeviceQueueCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DeviceQueueCreateFlags operator|( DeviceQueueCreateFlagBits bit0, DeviceQueueCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return DeviceQueueCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class ImageViewCreateFlagBits
|
enum class ImageViewCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using ImageViewCreateFlags = Flags<ImageViewCreateFlagBits, VkImageViewCreateFlags>;
|
using ImageViewCreateFlags = Flags<ImageViewCreateFlagBits, VkImageViewCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE ImageViewCreateFlags operator|( ImageViewCreateFlagBits bit0, ImageViewCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return ImageViewCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class SemaphoreCreateFlagBits
|
enum class SemaphoreCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using SemaphoreCreateFlags = Flags<SemaphoreCreateFlagBits, VkSemaphoreCreateFlags>;
|
using SemaphoreCreateFlags = Flags<SemaphoreCreateFlagBits, VkSemaphoreCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE SemaphoreCreateFlags operator|( SemaphoreCreateFlagBits bit0, SemaphoreCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return SemaphoreCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class ShaderModuleCreateFlagBits
|
enum class ShaderModuleCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using ShaderModuleCreateFlags = Flags<ShaderModuleCreateFlagBits, VkShaderModuleCreateFlags>;
|
using ShaderModuleCreateFlags = Flags<ShaderModuleCreateFlagBits, VkShaderModuleCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE ShaderModuleCreateFlags operator|( ShaderModuleCreateFlagBits bit0, ShaderModuleCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return ShaderModuleCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class EventCreateFlagBits
|
enum class EventCreateFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using EventCreateFlags = Flags<EventCreateFlagBits, VkEventCreateFlags>;
|
using EventCreateFlags = Flags<EventCreateFlagBits, VkEventCreateFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE EventCreateFlags operator|( EventCreateFlagBits bit0, EventCreateFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return EventCreateFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class MemoryMapFlagBits
|
enum class MemoryMapFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using MemoryMapFlags = Flags<MemoryMapFlagBits, VkMemoryMapFlags>;
|
using MemoryMapFlags = Flags<MemoryMapFlagBits, VkMemoryMapFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE MemoryMapFlags operator|( MemoryMapFlagBits bit0, MemoryMapFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return MemoryMapFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DescriptorPoolResetFlagBits
|
enum class DescriptorPoolResetFlagBits
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DescriptorPoolResetFlags = Flags<DescriptorPoolResetFlagBits, VkDescriptorPoolResetFlags>;
|
using DescriptorPoolResetFlags = Flags<DescriptorPoolResetFlagBits, VkDescriptorPoolResetFlags>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DescriptorPoolResetFlags operator|( DescriptorPoolResetFlagBits bit0, DescriptorPoolResetFlagBits bit1 )
|
|
||||||
{
|
|
||||||
return DescriptorPoolResetFlags( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DescriptorUpdateTemplateCreateFlagBitsKHR
|
enum class DescriptorUpdateTemplateCreateFlagBitsKHR
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DescriptorUpdateTemplateCreateFlagsKHR = Flags<DescriptorUpdateTemplateCreateFlagBitsKHR, VkDescriptorUpdateTemplateCreateFlagsKHR>;
|
using DescriptorUpdateTemplateCreateFlagsKHR = Flags<DescriptorUpdateTemplateCreateFlagBitsKHR, VkDescriptorUpdateTemplateCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DescriptorUpdateTemplateCreateFlagsKHR operator|( DescriptorUpdateTemplateCreateFlagBitsKHR bit0, DescriptorUpdateTemplateCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return DescriptorUpdateTemplateCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DisplayModeCreateFlagBitsKHR
|
enum class DisplayModeCreateFlagBitsKHR
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DisplayModeCreateFlagsKHR = Flags<DisplayModeCreateFlagBitsKHR, VkDisplayModeCreateFlagsKHR>;
|
using DisplayModeCreateFlagsKHR = Flags<DisplayModeCreateFlagBitsKHR, VkDisplayModeCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DisplayModeCreateFlagsKHR operator|( DisplayModeCreateFlagBitsKHR bit0, DisplayModeCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return DisplayModeCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class DisplaySurfaceCreateFlagBitsKHR
|
enum class DisplaySurfaceCreateFlagBitsKHR
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using DisplaySurfaceCreateFlagsKHR = Flags<DisplaySurfaceCreateFlagBitsKHR, VkDisplaySurfaceCreateFlagsKHR>;
|
using DisplaySurfaceCreateFlagsKHR = Flags<DisplaySurfaceCreateFlagBitsKHR, VkDisplaySurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE DisplaySurfaceCreateFlagsKHR operator|( DisplaySurfaceCreateFlagBitsKHR bit0, DisplaySurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return DisplaySurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||||
enum class AndroidSurfaceCreateFlagBitsKHR
|
enum class AndroidSurfaceCreateFlagBitsKHR
|
||||||
{
|
{
|
||||||
@ -963,11 +818,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||||
using AndroidSurfaceCreateFlagsKHR = Flags<AndroidSurfaceCreateFlagBitsKHR, VkAndroidSurfaceCreateFlagsKHR>;
|
using AndroidSurfaceCreateFlagsKHR = Flags<AndroidSurfaceCreateFlagBitsKHR, VkAndroidSurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE AndroidSurfaceCreateFlagsKHR operator|( AndroidSurfaceCreateFlagBitsKHR bit0, AndroidSurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return AndroidSurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_MIR_KHR
|
#ifdef VK_USE_PLATFORM_MIR_KHR
|
||||||
@ -978,11 +828,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_MIR_KHR
|
#ifdef VK_USE_PLATFORM_MIR_KHR
|
||||||
using MirSurfaceCreateFlagsKHR = Flags<MirSurfaceCreateFlagBitsKHR, VkMirSurfaceCreateFlagsKHR>;
|
using MirSurfaceCreateFlagsKHR = Flags<MirSurfaceCreateFlagBitsKHR, VkMirSurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE MirSurfaceCreateFlagsKHR operator|( MirSurfaceCreateFlagBitsKHR bit0, MirSurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return MirSurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_MIR_KHR*/
|
#endif /*VK_USE_PLATFORM_MIR_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_VI_NN
|
#ifdef VK_USE_PLATFORM_VI_NN
|
||||||
@ -993,11 +838,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_VI_NN
|
#ifdef VK_USE_PLATFORM_VI_NN
|
||||||
using ViSurfaceCreateFlagsNN = Flags<ViSurfaceCreateFlagBitsNN, VkViSurfaceCreateFlagsNN>;
|
using ViSurfaceCreateFlagsNN = Flags<ViSurfaceCreateFlagBitsNN, VkViSurfaceCreateFlagsNN>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE ViSurfaceCreateFlagsNN operator|( ViSurfaceCreateFlagBitsNN bit0, ViSurfaceCreateFlagBitsNN bit1 )
|
|
||||||
{
|
|
||||||
return ViSurfaceCreateFlagsNN( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_VI_NN*/
|
#endif /*VK_USE_PLATFORM_VI_NN*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||||
@ -1008,11 +848,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||||
using WaylandSurfaceCreateFlagsKHR = Flags<WaylandSurfaceCreateFlagBitsKHR, VkWaylandSurfaceCreateFlagsKHR>;
|
using WaylandSurfaceCreateFlagsKHR = Flags<WaylandSurfaceCreateFlagBitsKHR, VkWaylandSurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE WaylandSurfaceCreateFlagsKHR operator|( WaylandSurfaceCreateFlagBitsKHR bit0, WaylandSurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return WaylandSurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/
|
#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||||
@ -1023,11 +858,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||||
using Win32SurfaceCreateFlagsKHR = Flags<Win32SurfaceCreateFlagBitsKHR, VkWin32SurfaceCreateFlagsKHR>;
|
using Win32SurfaceCreateFlagsKHR = Flags<Win32SurfaceCreateFlagBitsKHR, VkWin32SurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE Win32SurfaceCreateFlagsKHR operator|( Win32SurfaceCreateFlagBitsKHR bit0, Win32SurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return Win32SurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
||||||
@ -1038,11 +868,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
||||||
using XlibSurfaceCreateFlagsKHR = Flags<XlibSurfaceCreateFlagBitsKHR, VkXlibSurfaceCreateFlagsKHR>;
|
using XlibSurfaceCreateFlagsKHR = Flags<XlibSurfaceCreateFlagBitsKHR, VkXlibSurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE XlibSurfaceCreateFlagsKHR operator|( XlibSurfaceCreateFlagBitsKHR bit0, XlibSurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return XlibSurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_XLIB_KHR*/
|
#endif /*VK_USE_PLATFORM_XLIB_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_XCB_KHR
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
||||||
@ -1053,11 +878,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_XCB_KHR
|
#ifdef VK_USE_PLATFORM_XCB_KHR
|
||||||
using XcbSurfaceCreateFlagsKHR = Flags<XcbSurfaceCreateFlagBitsKHR, VkXcbSurfaceCreateFlagsKHR>;
|
using XcbSurfaceCreateFlagsKHR = Flags<XcbSurfaceCreateFlagBitsKHR, VkXcbSurfaceCreateFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE XcbSurfaceCreateFlagsKHR operator|( XcbSurfaceCreateFlagBitsKHR bit0, XcbSurfaceCreateFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return XcbSurfaceCreateFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_XCB_KHR*/
|
#endif /*VK_USE_PLATFORM_XCB_KHR*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_IOS_MVK
|
#ifdef VK_USE_PLATFORM_IOS_MVK
|
||||||
@ -1068,11 +888,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_IOS_MVK
|
#ifdef VK_USE_PLATFORM_IOS_MVK
|
||||||
using IOSSurfaceCreateFlagsMVK = Flags<IOSSurfaceCreateFlagBitsMVK, VkIOSSurfaceCreateFlagsMVK>;
|
using IOSSurfaceCreateFlagsMVK = Flags<IOSSurfaceCreateFlagBitsMVK, VkIOSSurfaceCreateFlagsMVK>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE IOSSurfaceCreateFlagsMVK operator|( IOSSurfaceCreateFlagBitsMVK bit0, IOSSurfaceCreateFlagBitsMVK bit1 )
|
|
||||||
{
|
|
||||||
return IOSSurfaceCreateFlagsMVK( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_IOS_MVK*/
|
#endif /*VK_USE_PLATFORM_IOS_MVK*/
|
||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
||||||
@ -1083,11 +898,6 @@ namespace vk
|
|||||||
|
|
||||||
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
||||||
using MacOSSurfaceCreateFlagsMVK = Flags<MacOSSurfaceCreateFlagBitsMVK, VkMacOSSurfaceCreateFlagsMVK>;
|
using MacOSSurfaceCreateFlagsMVK = Flags<MacOSSurfaceCreateFlagBitsMVK, VkMacOSSurfaceCreateFlagsMVK>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE MacOSSurfaceCreateFlagsMVK operator|( MacOSSurfaceCreateFlagBitsMVK bit0, MacOSSurfaceCreateFlagBitsMVK bit1 )
|
|
||||||
{
|
|
||||||
return MacOSSurfaceCreateFlagsMVK( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
#endif /*VK_USE_PLATFORM_MACOS_MVK*/
|
#endif /*VK_USE_PLATFORM_MACOS_MVK*/
|
||||||
|
|
||||||
enum class CommandPoolTrimFlagBitsKHR
|
enum class CommandPoolTrimFlagBitsKHR
|
||||||
@ -1096,33 +906,18 @@ namespace vk
|
|||||||
|
|
||||||
using CommandPoolTrimFlagsKHR = Flags<CommandPoolTrimFlagBitsKHR, VkCommandPoolTrimFlagsKHR>;
|
using CommandPoolTrimFlagsKHR = Flags<CommandPoolTrimFlagBitsKHR, VkCommandPoolTrimFlagsKHR>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE CommandPoolTrimFlagsKHR operator|( CommandPoolTrimFlagBitsKHR bit0, CommandPoolTrimFlagBitsKHR bit1 )
|
|
||||||
{
|
|
||||||
return CommandPoolTrimFlagsKHR( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineViewportSwizzleStateCreateFlagBitsNV
|
enum class PipelineViewportSwizzleStateCreateFlagBitsNV
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineViewportSwizzleStateCreateFlagsNV = Flags<PipelineViewportSwizzleStateCreateFlagBitsNV, VkPipelineViewportSwizzleStateCreateFlagsNV>;
|
using PipelineViewportSwizzleStateCreateFlagsNV = Flags<PipelineViewportSwizzleStateCreateFlagBitsNV, VkPipelineViewportSwizzleStateCreateFlagsNV>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineViewportSwizzleStateCreateFlagsNV operator|( PipelineViewportSwizzleStateCreateFlagBitsNV bit0, PipelineViewportSwizzleStateCreateFlagBitsNV bit1 )
|
|
||||||
{
|
|
||||||
return PipelineViewportSwizzleStateCreateFlagsNV( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
enum class PipelineDiscardRectangleStateCreateFlagBitsEXT
|
enum class PipelineDiscardRectangleStateCreateFlagBitsEXT
|
||||||
{
|
{
|
||||||
};
|
};
|
||||||
|
|
||||||
using PipelineDiscardRectangleStateCreateFlagsEXT = Flags<PipelineDiscardRectangleStateCreateFlagBitsEXT, VkPipelineDiscardRectangleStateCreateFlagsEXT>;
|
using PipelineDiscardRectangleStateCreateFlagsEXT = Flags<PipelineDiscardRectangleStateCreateFlagBitsEXT, VkPipelineDiscardRectangleStateCreateFlagsEXT>;
|
||||||
|
|
||||||
VULKAN_HPP_INLINE PipelineDiscardRectangleStateCreateFlagsEXT operator|( PipelineDiscardRectangleStateCreateFlagBitsEXT bit0, PipelineDiscardRectangleStateCreateFlagBitsEXT bit1 )
|
|
||||||
{
|
|
||||||
return PipelineDiscardRectangleStateCreateFlagsEXT( bit0 ) | bit1;
|
|
||||||
}
|
|
||||||
|
|
||||||
class DeviceMemory
|
class DeviceMemory
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -21753,10 +21548,10 @@ namespace vk
|
|||||||
};
|
};
|
||||||
static_assert( sizeof( RenderPassCreateInfo ) == sizeof( VkRenderPassCreateInfo ), "struct and wrapper have different size!" );
|
static_assert( sizeof( RenderPassCreateInfo ) == sizeof( VkRenderPassCreateInfo ), "struct and wrapper have different size!" );
|
||||||
|
|
||||||
Result enumerateInstanceLayerProperties( uint32_t* pPropertyCount, LayerProperties* pProperties );
|
Result enumerateInstanceLayerProperties( uint32_t* pPropertyCount, LayerProperties* pProperties );
|
||||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
template <typename Allocator = std::allocator<LayerProperties>>
|
template <typename Allocator = std::allocator<LayerProperties>>
|
||||||
typename ResultValueType<std::vector<LayerProperties,Allocator>>::type enumerateInstanceLayerProperties();
|
typename ResultValueType<std::vector<LayerProperties,Allocator>>::type enumerateInstanceLayerProperties();
|
||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
VULKAN_HPP_INLINE Result enumerateInstanceLayerProperties( uint32_t* pPropertyCount, LayerProperties* pProperties )
|
VULKAN_HPP_INLINE Result enumerateInstanceLayerProperties( uint32_t* pPropertyCount, LayerProperties* pProperties )
|
||||||
@ -21786,10 +21581,10 @@ namespace vk
|
|||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
|
|
||||||
Result enumerateInstanceExtensionProperties( const char* pLayerName, uint32_t* pPropertyCount, ExtensionProperties* pProperties );
|
Result enumerateInstanceExtensionProperties( const char* pLayerName, uint32_t* pPropertyCount, ExtensionProperties* pProperties );
|
||||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
template <typename Allocator = std::allocator<ExtensionProperties>>
|
template <typename Allocator = std::allocator<ExtensionProperties>>
|
||||||
typename ResultValueType<std::vector<ExtensionProperties,Allocator>>::type enumerateInstanceExtensionProperties( Optional<const std::string> layerName = nullptr );
|
typename ResultValueType<std::vector<ExtensionProperties,Allocator>>::type enumerateInstanceExtensionProperties( Optional<const std::string> layerName = nullptr );
|
||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
VULKAN_HPP_INLINE Result enumerateInstanceExtensionProperties( const char* pLayerName, uint32_t* pPropertyCount, ExtensionProperties* pProperties )
|
VULKAN_HPP_INLINE Result enumerateInstanceExtensionProperties( const char* pLayerName, uint32_t* pPropertyCount, ExtensionProperties* pProperties )
|
||||||
@ -27577,11 +27372,11 @@ namespace vk
|
|||||||
using UniqueInstance = UniqueHandle<Instance, InstanceDeleter>;
|
using UniqueInstance = UniqueHandle<Instance, InstanceDeleter>;
|
||||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||||
|
|
||||||
Result createInstance( const InstanceCreateInfo* pCreateInfo, const AllocationCallbacks* pAllocator, Instance* pInstance );
|
Result createInstance( const InstanceCreateInfo* pCreateInfo, const AllocationCallbacks* pAllocator, Instance* pInstance );
|
||||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||||
ResultValueType<Instance>::type createInstance( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator = nullptr );
|
ResultValueType<Instance>::type createInstance( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator = nullptr );
|
||||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||||
UniqueInstance createInstanceUnique( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator = nullptr );
|
UniqueInstance createInstanceUnique( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator = nullptr );
|
||||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user