mirror of
https://github.com/KhronosGroup/Vulkan-Hpp.git
synced 2025-09-24 03:56:51 -04:00

* move vulkan module setup function to global scope * use the vulkan include setup func for module setups instead of manual linking * test setup function extended to allow for modules * create std module variant for each test * remove the obsolete NO_UTILS from test setup * commented some TODOs * only enable module tests when VULKAN_HPP_ENABLE_CPP20_MODULES is set * reenable handles.cpp test * remove use nested namespaces * include array header for ArrayProxyNoTemporaries test * include <compare> in enums for spaceship operator * manually added <compare> to Flags.cpp test * properly guarded <string_view> with c++17 requirement
50 lines
1.7 KiB
C++
50 lines
1.7 KiB
C++
// Copyright(c) 2023, 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 Tests : EnableBetaExtensions
|
|
// Compile test with VK_ENABLE_BETA_EXTENSIONS defined
|
|
|
|
// ignore warning 4189: local variable is initialized but not referenced
|
|
#if defined( _MSC_VER )
|
|
# pragma warning( disable : 4189 )
|
|
#elif defined( __GNUC__ )
|
|
# pragma GCC diagnostic ignored "-Wunused-but-set-variable"
|
|
# pragma GCC diagnostic ignored "-Wunused-variable"
|
|
#else
|
|
// unknow compiler... just ignore the warnings for yourselves ;)
|
|
#endif
|
|
|
|
#ifdef VULKAN_HPP_USE_CXX_MODULE
|
|
import vulkan_hpp;
|
|
#else
|
|
# include <vulkan/vulkan.hpp>
|
|
#endif
|
|
|
|
#if VULKAN_HPP_DISPATCH_LOADER_DYNAMIC == 1
|
|
namespace vk {
|
|
namespace detail {
|
|
DispatchLoaderDynamic defaultDispatchLoaderDynamic;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
int main( int /*argc*/, char ** /*argv*/ )
|
|
{
|
|
vk::PhysicalDevice physicalDevice;
|
|
|
|
auto features = physicalDevice.getFeatures2<vk::PhysicalDeviceFeatures2, vk::PhysicalDevicePortabilitySubsetFeaturesKHR>();
|
|
auto properties = physicalDevice.getProperties2<vk::PhysicalDeviceProperties2, vk::PhysicalDevicePortabilitySubsetPropertiesKHR>();
|
|
return 0;
|
|
}
|