Update to Vulkan 1.0.62 (#136)

This commit is contained in:
Markus Tavenrath 2017-10-09 17:21:32 +02:00 committed by GitHub
parent 6681979254
commit 5ee30d3ce1
2 changed files with 8 additions and 8 deletions

@ -1 +1 @@
Subproject commit 0cc6bba634aeecb88e4b43f1bdfd84a339c1869e
Subproject commit d2d907e4f3730bc4290b518faf0604492b302693

View File

@ -33,7 +33,7 @@
# include <memory>
# include <vector>
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
static_assert( VK_HEADER_VERSION == 61 , "Wrong VK_HEADER_VERSION!" );
static_assert( VK_HEADER_VERSION == 62 , "Wrong VK_HEADER_VERSION!" );
// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default.
// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION
@ -19324,13 +19324,13 @@ namespace VULKAN_HPP_NAMESPACE
struct RenderPassSampleLocationsBeginInfoEXT
{
RenderPassSampleLocationsBeginInfoEXT( uint32_t attachmentInitialSampleLocationsCount_ = 0, const AttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations_ = nullptr, uint32_t postSubpassSampleLocationsCount_ = 0, const SubpassSampleLocationsEXT* pSubpassSampleLocations_ = nullptr )
RenderPassSampleLocationsBeginInfoEXT( uint32_t attachmentInitialSampleLocationsCount_ = 0, const AttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations_ = nullptr, uint32_t postSubpassSampleLocationsCount_ = 0, const SubpassSampleLocationsEXT* pPostSubpassSampleLocations_ = nullptr )
: sType( StructureType::eRenderPassSampleLocationsBeginInfoEXT )
, pNext( nullptr )
, attachmentInitialSampleLocationsCount( attachmentInitialSampleLocationsCount_ )
, pAttachmentInitialSampleLocations( pAttachmentInitialSampleLocations_ )
, postSubpassSampleLocationsCount( postSubpassSampleLocationsCount_ )
, pSubpassSampleLocations( pSubpassSampleLocations_ )
, pPostSubpassSampleLocations( pPostSubpassSampleLocations_ )
{
}
@ -19368,9 +19368,9 @@ namespace VULKAN_HPP_NAMESPACE
return *this;
}
RenderPassSampleLocationsBeginInfoEXT& setPSubpassSampleLocations( const SubpassSampleLocationsEXT* pSubpassSampleLocations_ )
RenderPassSampleLocationsBeginInfoEXT& setPPostSubpassSampleLocations( const SubpassSampleLocationsEXT* pPostSubpassSampleLocations_ )
{
pSubpassSampleLocations = pSubpassSampleLocations_;
pPostSubpassSampleLocations = pPostSubpassSampleLocations_;
return *this;
}
@ -19386,7 +19386,7 @@ namespace VULKAN_HPP_NAMESPACE
&& ( attachmentInitialSampleLocationsCount == rhs.attachmentInitialSampleLocationsCount )
&& ( pAttachmentInitialSampleLocations == rhs.pAttachmentInitialSampleLocations )
&& ( postSubpassSampleLocationsCount == rhs.postSubpassSampleLocationsCount )
&& ( pSubpassSampleLocations == rhs.pSubpassSampleLocations );
&& ( pPostSubpassSampleLocations == rhs.pPostSubpassSampleLocations );
}
bool operator!=( RenderPassSampleLocationsBeginInfoEXT const& rhs ) const
@ -19402,7 +19402,7 @@ namespace VULKAN_HPP_NAMESPACE
uint32_t attachmentInitialSampleLocationsCount;
const AttachmentSampleLocationsEXT* pAttachmentInitialSampleLocations;
uint32_t postSubpassSampleLocationsCount;
const SubpassSampleLocationsEXT* pSubpassSampleLocations;
const SubpassSampleLocationsEXT* pPostSubpassSampleLocations;
};
static_assert( sizeof( RenderPassSampleLocationsBeginInfoEXT ) == sizeof( VkRenderPassSampleLocationsBeginInfoEXT ), "struct and wrapper have different size!" );