2021-01-14 10:41:30 +00:00
// Copyright(c) 2018, 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 Samples : ArrayProxyNoTemporaries
// Compile test on using vk::ArrayProxyNoTemporaries
2022-03-02 15:26:09 +00:00
# if defined( _MSC_VER )
// no need to ignore any warnings with MSVC
# elif defined( __GNUC__ )
# if ( 9 <= __GNUC__ )
# pragma GCC diagnostic ignored "-Winit-list-lifetime"
# endif
# else
// unknow compiler... just ignore the warnings for yourselves ;)
# endif
2021-01-14 10:41:30 +00:00
# include "vulkan/vulkan.hpp"
2022-02-28 09:11:04 +00:00
2021-01-14 10:41:30 +00:00
# include <iostream>
2022-02-28 09:11:04 +00:00
void fct ( vk : : ArrayProxyNoTemporaries < int > /*ap*/ ) { }
2021-01-14 10:41:30 +00:00
2022-02-28 09:11:04 +00:00
void fctc ( vk : : ArrayProxyNoTemporaries < const int > /*ap*/ ) { }
2021-01-14 10:41:30 +00:00
int getInt ( )
{
return 1 ;
}
std : : array < int , 2 > getArray ( )
{
return { 1 , 2 } ;
}
std : : array < int , 2 > const getConstArray ( )
{
return { 1 , 2 } ;
}
std : : vector < int > getVector ( )
{
return { 1 , 2 } ;
}
std : : vector < int > const getConstVector ( )
{
return { 1 , 2 } ;
}
std : : initializer_list < int > getInitializerList ( )
{
return { 1 , 2 } ;
}
std : : initializer_list < int > const getConstInitializerList ( )
{
return { 1 , 2 } ;
}
int main ( int /*argc*/ , char * * /*argv*/ )
{
try
{
2021-09-08 07:53:25 +00:00
// to prevent a warning on unreferenced function vk::getDispatchLoaderStatic, use just one arbitrary vk-function
vk : : enumerateInstanceVersion ( ) ;
2021-01-14 10:41:30 +00:00
// nullptr_t
2022-02-28 09:11:04 +00:00
fct ( nullptr ) ;
fctc ( nullptr ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < int > ap0 = nullptr ;
2022-02-28 09:11:04 +00:00
assert ( ap0 . size ( ) = = 0 ) ;
2021-01-14 10:41:30 +00:00
// Type
2021-11-22 14:11:03 +00:00
// fct(2); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<int>(int &&)
// fctc(1); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<T,0>(int &&)
2021-01-14 10:41:30 +00:00
// getInt()
2021-11-22 14:11:03 +00:00
// fct( getInt() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<int>(int &&)
// fctc( getInt() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<T,0>(int &&)
2021-01-14 10:41:30 +00:00
int i0 = 1 ;
2022-02-28 09:11:04 +00:00
fct ( i0 ) ;
fctc ( i0 ) ;
2021-01-14 10:41:30 +00:00
const int i1 = 2 ;
2021-11-22 14:11:03 +00:00
// fct(i1); // not supported: ArrayProxyNoTemporaries<const int&>(const int &)
2022-02-28 09:11:04 +00:00
fctc ( i1 ) ;
2021-01-14 10:41:30 +00:00
// count, T *
2022-02-28 09:11:04 +00:00
int * i0p = & i0 ;
fct ( { 1 , i0p } ) ;
fctc ( { 1 , i0p } ) ;
2021-01-14 10:41:30 +00:00
// count, T const*
2022-02-28 09:11:04 +00:00
int const * i1p = & i1 ;
2021-11-22 14:11:03 +00:00
// fct({ 1, i1p }); // not supported: cannot convert argument 1 from 'initializer list' to 'vk::ArrayProxyNoTemporaries<int>'
2022-02-28 09:11:04 +00:00
fctc ( { 1 , i1p } ) ;
2021-01-14 10:41:30 +00:00
// std::array<T,N>
std : : array < int , 2 > sa0 = { 0 , 1 } ;
2022-02-28 09:11:04 +00:00
fct ( sa0 ) ;
fctc ( sa0 ) ;
2021-01-14 10:41:30 +00:00
// std::array<const T,N>
std : : array < const int , 2 > sa1 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(sa1); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<std::array<const int,2>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( sa1 ) ;
2021-01-14 10:41:30 +00:00
// std::array<T,N> const
std : : array < int , 2 > const sa2 = { 1 , 2 } ;
2021-11-22 14:11:03 +00:00
// fct(sa2); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::array<int,2>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( sa2 ) ;
2021-01-14 10:41:30 +00:00
// std::array<const T,N> const
std : : array < const int , 2 > const sa3 = { 1 , 2 } ;
2021-11-22 14:11:03 +00:00
// fct(sa3); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::array<const int,2>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( sa3 ) ;
2021-01-14 10:41:30 +00:00
// getArray
2021-11-22 14:11:03 +00:00
// fct( getConstArray() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::array<int,2>>(V &&)
// fctc( getConstArray() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::array<int,2>>(V &&)
// fct( getArray() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<std::array<int,2>>(V &&)
// fctc( getArray() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<std::array<int,2>>(V &&)
2021-01-14 10:41:30 +00:00
// from std::array constructors
vk : : ArrayProxyNoTemporaries < int > ap2 = sa0 ;
2022-02-28 09:11:04 +00:00
assert ( ap2 . size ( ) = = 2 ) ;
// vk::ArrayProxyNoTemporaries<int> ap3 = sa1; // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<std::array<const
// int,2>&>(V) vk::ArrayProxyNoTemporaries<int> ap4 = sa2; // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const
// std::array<int,2>&>(V) vk::ArrayProxyNoTemporaries<int> ap5 = sa3; // not supported: attempting to reference a deleted function:
// ArrayProxyNoTemporaries<const std::array<const int,2>&>(V)
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap6 = sa0 ;
2022-02-28 09:11:04 +00:00
assert ( ap6 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap7 = sa1 ;
2022-02-28 09:11:04 +00:00
assert ( ap7 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap8 = sa2 ;
2022-02-28 09:11:04 +00:00
assert ( ap8 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap9 = sa3 ;
2022-02-28 09:11:04 +00:00
assert ( ap9 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
// std::vector<T>
std : : vector < int > sv0 = { 0 , 1 } ;
2022-02-28 09:11:04 +00:00
fct ( sv0 ) ;
fctc ( sv0 ) ;
2021-01-14 10:41:30 +00:00
// std::vector<T> const
std : : vector < int > const sv1 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(sv1); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::vector<int,std::allocator<int>>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( sv1 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < int > ap10 = sv0 ;
2022-02-28 09:11:04 +00:00
assert ( ap10 . size ( ) = = 2 ) ;
// vk::ArrayProxyNoTemporaries<int> ap11 = sv1; // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const
// std::vector<int,std::allocator<int>>&>(V)
2021-01-14 10:41:30 +00:00
// getVector
2022-02-28 09:11:04 +00:00
// fct( getConstVector() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const
// std::vector<int,std::allocator<int>>>(V &&) fctc( getConstVector() ); // not supported: attempting to reference a deleted function:
// ArrayProxyNoTemporaries<const std::vector<int,std::allocator<int>>>(V &&) fct( getVector() ); // not supported: attempting to reference a deleted
// function: ArrayProxyNoTemporaries<std::vector<int,std::allocator<int>>>(V &&) fctc( getVector() ); // not supported: attempting to reference a
// deleted function: ArrayProxyNoTemporaries<std::vector<int,std::allocator<int>>>(V &&)
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap12 = sv0 ;
2022-02-28 09:11:04 +00:00
assert ( ap12 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap13 = sv1 ;
2022-02-28 09:11:04 +00:00
assert ( ap13 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
// std::initializer_list
2022-02-28 09:11:04 +00:00
fct ( { } ) ;
fctc ( { } ) ;
2021-01-14 10:41:30 +00:00
2021-11-22 14:11:03 +00:00
// fct({ 0, 1 }); // not supported: cannot convert argument 1 from 'initializer list' to 'vk::ArrayProxyNoTemporaries<int>'
// fctc({ 0, 1 }); // not supported: cannot convert argument 1 from 'initializer list' to 'vk::ArrayProxyNoTemporaries<const int32_t>'
2021-01-14 10:41:30 +00:00
2021-11-22 14:11:03 +00:00
// int a = 0;
// int b = 1;
// fct({ a, b }); // not supported: cannot convert argument 1 from 'initializer list' to 'vk::ArrayProxyNoTemporaries<int>'
// fctc({ a,b }); // not supported: cannot convert argument 1 from 'initializer list' to 'vk::ArrayProxyNoTemporaries<const int32_t>'
2021-01-14 10:41:30 +00:00
2022-02-28 09:11:04 +00:00
auto il0 = { 0 , 1 } ; // -> std::initializer_list<int>
2021-11-22 14:11:03 +00:00
// fct(il0); // not supported: cannot convert from 'const int *' to 'int *'
2022-02-28 09:11:04 +00:00
fctc ( il0 ) ;
2021-01-14 10:41:30 +00:00
std : : initializer_list < int > il1 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(il1); // not supported: cannot convert from 'const int *' to 'int *'
2022-02-28 09:11:04 +00:00
fctc ( il1 ) ;
2021-01-14 10:41:30 +00:00
std : : initializer_list < const int > il2 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(il2); // not supported: attempting to reference a deleted function : ArrayProxyNoTemporaries<std::initializer_list<T>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( il2 ) ;
2021-01-14 10:41:30 +00:00
std : : initializer_list < int > const il3 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(il3); // not supported: cannot convert from 'const int *' to 'int *'
2022-02-28 09:11:04 +00:00
fctc ( il3 ) ;
2021-01-14 10:41:30 +00:00
std : : initializer_list < const int > const il4 = { 0 , 1 } ;
2021-11-22 14:11:03 +00:00
// fct(il4); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const std::initializer_list<T>&>(V)
2022-02-28 09:11:04 +00:00
fctc ( il4 ) ;
2021-01-14 10:41:30 +00:00
// getInitializerList
2022-02-28 09:11:04 +00:00
// fct( getConstInitializerList() ); // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries(const
// std::initializer_list<int> &&) fctc( getConstInitializerList() ); // not supported: attempting to reference a deleted function:
// ArrayProxyNoTemporaries<T,0>(const std::initializer_list<int> &&) fct( getInitializerList() ); // not supported: attempting to reference a
// deleted function: ArrayProxyNoTemporaries(std::initializer_list<int> &&) fctc( getInitializerList() ); // not supported: attempting to reference
// a deleted function: ArrayProxyNoTemporaries<T,0>(std::initializer_list<int> &&)
2021-11-22 14:11:03 +00:00
// vk::ArrayProxyNoTemporaries<int> ap14 = il1; // not supported: cannot convert from 'const int *' to 'int *'
2022-02-28 09:11:04 +00:00
// vk::ArrayProxyNoTemporaries<int> ap15 = il2; // not supported: attempting to reference a deleted function:
// ArrayProxyNoTemporaries<std::initializer_list<T>&>(V) vk::ArrayProxyNoTemporaries<int> ap16 = il3; // not supported: cannot convert from 'const int *'
// to 'int *' vk::ArrayProxyNoTemporaries<int> ap17 = il4; // not supported: attempting to reference a deleted function: ArrayProxyNoTemporaries<const
// std::initializer_list<T>&>(V)
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap18 = il1 ;
2022-02-28 09:11:04 +00:00
assert ( ap18 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap19 = il2 ;
2022-02-28 09:11:04 +00:00
assert ( ap19 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap20 = il3 ;
2022-02-28 09:11:04 +00:00
assert ( ap20 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
vk : : ArrayProxyNoTemporaries < const int > ap21 = il4 ;
2022-02-28 09:11:04 +00:00
assert ( ap21 . size ( ) = = 2 ) ;
2021-01-14 10:41:30 +00:00
}
2022-02-28 09:11:04 +00:00
catch ( vk : : SystemError const & err )
2021-01-14 10:41:30 +00:00
{
std : : cout < < " vk::SystemError: " < < err . what ( ) < < std : : endl ;
2022-02-28 09:11:04 +00:00
exit ( - 1 ) ;
2021-01-14 10:41:30 +00:00
}
2022-02-28 09:11:04 +00:00
catch ( . . . )
2021-01-14 10:41:30 +00:00
{
std : : cout < < " unknown error \n " ;
2022-02-28 09:11:04 +00:00
exit ( - 1 ) ;
2021-01-14 10:41:30 +00:00
}
return 0 ;
}