Refactor RAII-samples to use std::unique_ptr only if needed.

This commit is contained in:
asuessenbach
2021-06-21 11:32:43 +02:00
parent da2ecae452
commit 69e8e5bf84
52 changed files with 2171 additions and 2437 deletions

View File

@@ -25,11 +25,11 @@ int main( int /*argc*/, char ** /*argv*/ )
{
try
{
std::unique_ptr<vk::raii::Context> context = vk::raii::su::make_unique<vk::raii::Context>();
vk::raii::Context context;
/* VULKAN_KEY_START */
std::vector<vk::LayerProperties> layerProperties = context->enumerateInstanceLayerProperties();
std::vector<vk::LayerProperties> layerProperties = context.enumerateInstanceLayerProperties();
std::cout << "Instance Layers:" << std::endl;
if ( layerProperties.empty() )