-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add specializations of std::hash for all the structs and handles in t…
…he vk-namespace.
- Loading branch information
1 parent
a4d53f4
commit 385f594
Showing
7 changed files
with
4,360 additions
and
74 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,101 @@ | ||
// Copyright(c) 2024, NVIDIA CORPORATION. All rights reserved. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// VulkanHpp Test : CppStdModule | ||
// Compile test on using c++20 modules | ||
|
||
import std; | ||
import vulkan_hpp; | ||
|
||
#if defined( _MSC_VER ) | ||
# pragma warning( disable : 4189 ) // local variable is initialized but not referenced | ||
#elif defined( __GNUC__ ) | ||
# pragma GCC diagnostic ignored "-Wunused-variable" | ||
#else | ||
// unknow compiler... just ignore the warnings for yourselves ;) | ||
#endif | ||
|
||
#include <assert.h> | ||
#include <vulkan/vulkan_hpp_macros.hpp> | ||
|
||
static std::string AppName = "CppStdModule"; | ||
static std::string AppName = "CppStdModule"; | ||
static std::string EngineName = "Vulkan.cppm"; | ||
|
||
#if VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1 | ||
VULKAN_HPP_DEFAULT_DISPATCH_LOADER_DYNAMIC_STORAGE | ||
#endif | ||
|
||
int main(int /*argc*/, char** /*argv*/) | ||
int main( int /*argc*/, char ** /*argv*/ ) | ||
{ | ||
/* VULKAN_HPP_KEY_START */ | ||
try | ||
{ | ||
std::cout << "test CppStdModule" << std::endl; | ||
|
||
/* VULKAN_HPP_KEY_START */ | ||
try | ||
{ | ||
#if ( VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1 ) | ||
// initialize minimal set of function pointers | ||
VULKAN_HPP_DEFAULT_DISPATCHER.init(); | ||
// initialize minimal set of function pointers | ||
VULKAN_HPP_DEFAULT_DISPATCHER.init(); | ||
#endif | ||
|
||
// initialize the vk::ApplicationInfo structure | ||
vk::ApplicationInfo applicationInfo(AppName.c_str(), 1, EngineName.c_str(), 1, vk::makeApiVersion(1, 0, 0, 0)); | ||
// initialize the vk::ApplicationInfo structure | ||
vk::ApplicationInfo applicationInfo( AppName.c_str(), 1, EngineName.c_str(), 1, vk::makeApiVersion( 1, 0, 0, 0 ) ); | ||
|
||
// initialize the vk::InstanceCreateInfo | ||
vk::InstanceCreateInfo instanceCreateInfo({}, &applicationInfo); | ||
// initialize the vk::InstanceCreateInfo | ||
vk::InstanceCreateInfo instanceCreateInfo( {}, &applicationInfo ); | ||
|
||
// create an Instance | ||
vk::Instance instance = vk::createInstance(instanceCreateInfo); | ||
// create an Instance | ||
vk::Instance instance = vk::createInstance( instanceCreateInfo ); | ||
|
||
#if ( VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1 ) | ||
// initialize function pointers for instance | ||
VULKAN_HPP_DEFAULT_DISPATCHER.init(instance); | ||
// initialize function pointers for instance | ||
VULKAN_HPP_DEFAULT_DISPATCHER.init( instance ); | ||
#endif | ||
|
||
// destroy it again | ||
instance.destroy(); | ||
} | ||
catch (vk::SystemError& err) | ||
{ | ||
std::cout << "vk::SystemError: " << err.what() << std::endl; | ||
exit(-1); | ||
} | ||
catch (std::exception& err) | ||
{ | ||
std::cout << "std::exception: " << err.what() << std::endl; | ||
exit(-1); | ||
} | ||
catch (...) | ||
{ | ||
std::cout << "unknown error\n"; | ||
exit(-1); | ||
} | ||
|
||
/* VULKAN_HPP_KEY_END */ | ||
|
||
return 0; | ||
// some minimal check for std::hash on a vk-type | ||
auto h1 = std::hash<vk::Instance>{}( instance ); | ||
auto h2 = std::hash<VkInstance>{}( static_cast<VkInstance>( instance ) ); | ||
assert( h1 == h2 ); | ||
|
||
std::unordered_set<vk::Instance> uset; | ||
uset.insert( instance ); | ||
|
||
std::unordered_map<vk::Instance, size_t> umap; | ||
umap[instance] = 1; | ||
|
||
vk::FormatFeatureFlags fff; | ||
auto hf = std::hash<vk::FormatFeatureFlags>{}( fff ); | ||
|
||
// destroy it again | ||
instance.destroy(); | ||
} | ||
catch ( vk::SystemError & err ) | ||
{ | ||
std::cout << "vk::SystemError: " << err.what() << std::endl; | ||
exit( -1 ); | ||
} | ||
catch ( std::exception & err ) | ||
{ | ||
std::cout << "std::exception: " << err.what() << std::endl; | ||
exit( -1 ); | ||
} | ||
catch ( ... ) | ||
{ | ||
std::cout << "unknown error\n"; | ||
exit( -1 ); | ||
} | ||
|
||
/* VULKAN_HPP_KEY_END */ | ||
|
||
return 0; | ||
} |
Oops, something went wrong.