mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2025-09-08 11:27:25 -04:00
Minor cleanup work.
This commit is contained in:
parent
71c53b678a
commit
d795efa30a
File diff suppressed because it is too large
Load Diff
@ -1196,6 +1196,7 @@ private:
|
|||||||
void readType( tinyxml2::XMLElement const * element );
|
void readType( tinyxml2::XMLElement const * element );
|
||||||
void readTypeEnum( tinyxml2::XMLElement const * element, std::map<std::string, std::string> const & attributes );
|
void readTypeEnum( tinyxml2::XMLElement const * element, std::map<std::string, std::string> const & attributes );
|
||||||
void readTypeInclude( tinyxml2::XMLElement const * element, std::map<std::string, std::string> const & attributes );
|
void readTypeInclude( tinyxml2::XMLElement const * element, std::map<std::string, std::string> const & attributes );
|
||||||
|
TypeInfo readTypeInfo( tinyxml2::XMLElement const * element ) const;
|
||||||
void readTypes( tinyxml2::XMLElement const * element );
|
void readTypes( tinyxml2::XMLElement const * element );
|
||||||
void registerDeleter( std::string const & name, std::pair<std::string, CommandData> const & commandData );
|
void registerDeleter( std::string const & name, std::pair<std::string, CommandData> const & commandData );
|
||||||
void renameFunctionParameters();
|
void renameFunctionParameters();
|
||||||
|
@ -103802,8 +103802,9 @@ namespace VULKAN_HPP_NAMESPACE
|
|||||||
reinterpret_cast<void *>( data.data() ),
|
reinterpret_cast<void *>( data.data() ),
|
||||||
static_cast<VkDeviceSize>( stride ),
|
static_cast<VkDeviceSize>( stride ),
|
||||||
static_cast<VkQueryResultFlags>( flags ) ) );
|
static_cast<VkQueryResultFlags>( flags ) ) );
|
||||||
return createResultValue(
|
return createResultValue( result,
|
||||||
result, VULKAN_HPP_NAMESPACE_STRING "::Device::getQueryPoolResults", { Result::eSuccess, Result::eNotReady } );
|
VULKAN_HPP_NAMESPACE_STRING "::Device::getQueryPoolResults",
|
||||||
|
{ VULKAN_HPP_NAMESPACE::Result::eSuccess, VULKAN_HPP_NAMESPACE::Result::eNotReady } );
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T, typename Allocator, typename Dispatch>
|
template <typename T, typename Allocator, typename Dispatch>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user