2019-03-05 07:59:40 +00:00
|
|
|
// Copyright(c) 2018-2019, NVIDIA CORPORATION. All rights reserved.
|
2018-03-31 08:09:50 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2018-04-09 08:53:55 +00:00
|
|
|
// VulkanHpp Samples : 06_InitDepthBuffer
|
|
|
|
// Initialize a depth buffer
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2019-03-19 14:35:08 +00:00
|
|
|
#include "../utils/utils.hpp"
|
2018-03-31 08:09:50 +00:00
|
|
|
#include "vulkan/vulkan.hpp"
|
2020-04-12 19:49:12 +00:00
|
|
|
|
2018-03-31 08:09:50 +00:00
|
|
|
#include <iostream>
|
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
static char const * AppName = "06_InitDepthBuffer";
|
|
|
|
static char const * EngineName = "Vulkan.hpp";
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
int main( int /*argc*/, char ** /*argv*/ )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::Instance instance = vk::su::createInstance( AppName, EngineName, {}, vk::su::getInstanceExtensions() );
|
2020-04-12 19:49:12 +00:00
|
|
|
#if !defined( NDEBUG )
|
2022-02-28 09:11:04 +00:00
|
|
|
vk::DebugUtilsMessengerEXT debugUtilsMessenger = instance.createDebugUtilsMessengerEXT( vk::su::makeDebugUtilsMessengerCreateInfoEXT() );
|
2019-03-05 07:59:40 +00:00
|
|
|
#endif
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::PhysicalDevice physicalDevice = instance.enumeratePhysicalDevices().front();
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
vk::su::SurfaceData surfaceData( instance, AppName, vk::Extent2D( 500, 500 ) );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2022-02-28 09:11:04 +00:00
|
|
|
std::pair<uint32_t, uint32_t> graphicsAndPresentQueueFamilyIndex = vk::su::findGraphicsAndPresentQueueFamilyIndex( physicalDevice, surfaceData.surface );
|
|
|
|
vk::Device device = vk::su::createDevice( physicalDevice, graphicsAndPresentQueueFamilyIndex.first, vk::su::getDeviceExtensions() );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
|
|
|
/* VULKAN_HPP_KEY_START */
|
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
const vk::Format depthFormat = vk::Format::eD16Unorm;
|
|
|
|
vk::FormatProperties formatProperties = physicalDevice.getFormatProperties( depthFormat );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
|
|
|
vk::ImageTiling tiling;
|
2020-04-12 19:49:12 +00:00
|
|
|
if ( formatProperties.linearTilingFeatures & vk::FormatFeatureFlagBits::eDepthStencilAttachment )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
tiling = vk::ImageTiling::eLinear;
|
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
else if ( formatProperties.optimalTilingFeatures & vk::FormatFeatureFlagBits::eDepthStencilAttachment )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
tiling = vk::ImageTiling::eOptimal;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-04-12 19:49:12 +00:00
|
|
|
throw std::runtime_error( "DepthStencilAttachment is not supported for D16Unorm depth format." );
|
2018-03-31 08:09:50 +00:00
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
vk::ImageCreateInfo imageCreateInfo( vk::ImageCreateFlags(),
|
|
|
|
vk::ImageType::e2D,
|
|
|
|
depthFormat,
|
|
|
|
vk::Extent3D( surfaceData.extent, 1 ),
|
|
|
|
1,
|
|
|
|
1,
|
|
|
|
vk::SampleCountFlagBits::e1,
|
|
|
|
tiling,
|
|
|
|
vk::ImageUsageFlagBits::eDepthStencilAttachment );
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::Image depthImage = device.createImage( imageCreateInfo );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2020-04-12 19:49:12 +00:00
|
|
|
vk::PhysicalDeviceMemoryProperties memoryProperties = physicalDevice.getMemoryProperties();
|
2021-02-17 09:49:59 +00:00
|
|
|
vk::MemoryRequirements memoryRequirements = device.getImageMemoryRequirements( depthImage );
|
2020-04-12 19:49:12 +00:00
|
|
|
uint32_t typeBits = memoryRequirements.memoryTypeBits;
|
|
|
|
uint32_t typeIndex = uint32_t( ~0 );
|
|
|
|
for ( uint32_t i = 0; i < memoryProperties.memoryTypeCount; i++ )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
2020-04-12 19:49:12 +00:00
|
|
|
if ( ( typeBits & 1 ) &&
|
2022-02-28 09:11:04 +00:00
|
|
|
( ( memoryProperties.memoryTypes[i].propertyFlags & vk::MemoryPropertyFlagBits::eDeviceLocal ) == vk::MemoryPropertyFlagBits::eDeviceLocal ) )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
typeIndex = i;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
typeBits >>= 1;
|
|
|
|
}
|
2020-09-30 10:00:32 +00:00
|
|
|
assert( typeIndex != uint32_t( ~0 ) );
|
2022-02-28 09:11:04 +00:00
|
|
|
vk::DeviceMemory depthMemory = device.allocateMemory( vk::MemoryAllocateInfo( memoryRequirements.size, typeIndex ) );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2021-02-17 09:49:59 +00:00
|
|
|
device.bindImageMemory( depthImage, depthMemory, 0 );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
2022-02-28 09:11:04 +00:00
|
|
|
vk::ImageView depthView = device.createImageView( vk::ImageViewCreateInfo(
|
|
|
|
vk::ImageViewCreateFlags(), depthImage, vk::ImageViewType::e2D, depthFormat, {}, { vk::ImageAspectFlagBits::eDepth, 0, 1, 0, 1 } ) );
|
2021-02-17 09:49:59 +00:00
|
|
|
|
|
|
|
// destroy depthView, depthMemory, and depthImage
|
|
|
|
device.destroyImageView( depthView );
|
|
|
|
device.freeMemory( depthMemory );
|
|
|
|
device.destroyImage( depthImage );
|
2018-03-31 08:09:50 +00:00
|
|
|
|
|
|
|
/* VULKAN_HPP_KEY_END */
|
2021-02-17 09:49:59 +00:00
|
|
|
|
|
|
|
device.destroy();
|
|
|
|
instance.destroySurfaceKHR( surfaceData.surface );
|
2021-05-25 14:14:56 +00:00
|
|
|
#if !defined( NDEBUG )
|
2021-02-17 09:49:59 +00:00
|
|
|
instance.destroyDebugUtilsMessengerEXT( debugUtilsMessenger );
|
2021-05-25 14:14:56 +00:00
|
|
|
#endif
|
2021-02-17 09:49:59 +00:00
|
|
|
instance.destroy();
|
2018-03-31 08:09:50 +00:00
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
catch ( vk::SystemError & err )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
std::cout << "vk::SystemError: " << err.what() << std::endl;
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2018-03-31 08:09:50 +00:00
|
|
|
}
|
2020-07-08 08:58:37 +00:00
|
|
|
catch ( std::exception & err )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
2020-07-08 08:58:37 +00:00
|
|
|
std::cout << "std::exception: " << err.what() << std::endl;
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2018-03-31 08:09:50 +00:00
|
|
|
}
|
2020-04-12 19:49:12 +00:00
|
|
|
catch ( ... )
|
2018-03-31 08:09:50 +00:00
|
|
|
{
|
|
|
|
std::cout << "unknown error\n";
|
2020-04-12 19:49:12 +00:00
|
|
|
exit( -1 );
|
2018-03-31 08:09:50 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|