Introduce copy constructor and assignment operator for vk::raii classes that hold handles without a destructor.

This commit is contained in:
asuessenbach
2022-03-22 12:26:28 +01:00
parent 3740f14c38
commit 23c11fe38d
36 changed files with 96 additions and 56 deletions

View File

@@ -70,7 +70,7 @@ int main( int /*argc*/, char ** /*argv*/ )
{
if ( desiredVersion <= pdh.getProperties().apiVersion )
{
desiredPhysicalDevices.push_back( std::move( pdh ) );
desiredPhysicalDevices.push_back( pdh );
}
}