asuessenbach
45e5418332
Combine two types of commands into one generation function.
2022-04-05 10:02:00 +02:00
asuessenbach
0328693bba
Add support for commands returning void and getting you a single opaque object represented by a size and a void-pointer
2022-04-04 11:58:06 +02:00
asuessenbach
dd6deccf52
Add missing allocator template argument in createResultValue helper functions working on std::vector<UniqueHandle> types.
2022-04-04 10:00:13 +02:00
asuessenbach
d966e4e3ac
Remove surplus closing brace in command generation template.
2022-03-31 21:02:32 +02:00
asuessenbach
6fca13eaba
Add support of commands returning void and getting a vector of data.
2022-03-31 17:52:32 +02:00
asuessenbach
333083e44e
Combine two types of commands into one generation function.
2022-03-31 09:52:06 +02:00
asuessenbach
16a44bb94f
Re-add accidentally removed version of createResultValue
...
+ add test project for UniqueHandles.
2022-03-30 09:45:51 +02:00
asuessenbach
f60264fee5
Resolved an assertion in readTypesTypeStruct.
2022-03-29 08:41:49 +02:00
asuessenbach
a8d47f4694
Combine two types of commands into one generation function.
2022-03-28 17:52:45 +02:00
asuessenbach
aad66ebe1c
Add support for commands enumerating some stuff, without any error codes.
2022-03-28 09:58:37 +02:00
asuessenbach
d90c6cbbfc
Add pNext as optional last argument to constructors of structs that hold a pNext.
2022-03-23 17:08:19 +01:00
asuessenbach
5e8fb94890
Add support for commands getting two values.
2022-03-23 10:00:40 +01:00
Andreas Süßenbach
ecc6d37d91
Merge pull request #1257 from asuessenbach/constructor
...
Introduce copy constructor and assignment operator for vk::raii classes that hold handles without a destructor.
2022-03-23 08:17:47 +01:00
asuessenbach
23c11fe38d
Introduce copy constructor and assignment operator for vk::raii classes that hold handles without a destructor.
2022-03-22 13:53:21 +01:00
Stephan Seitz
5a8532b0f7
fix: include <algorithm>
in VulkanHppGenerator.cpp
...
This fixes the build on Clang with `-stdlib=libc++` (if you disable -Werror as there are a lot of warnings)
```
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:781:28: error: no member named 'find_if_not' in namespace 'std'
auto endDigit = std::find_if_not( beginDigit, valueName.end(), []( std::string::value_type c ) { return isdigit( c ); } );
~~~~~^
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:1261:15: error: no member named 'find_if_not' in namespace 'std'
return std::find_if_not( vectorParams.begin(),
~~~~~^
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:2041:24: error: no member named 'find_if_not' in namespace 'std'
valid = ( std::find_if_not( destructorIt->second.params.begin(), destructorIt->second.params.end(), isConstructorCandidateParam ) ==
~~~~~^
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:2145:21: error: no member named 'find_if_not' in namespace 'std'
( std::find_if_not( sd.second.members.begin(), sd.second.members.end(), isMember ) == sd.second.members.end() );
~~~~~^
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:6047:17: error: no member named 'count_if' in namespace 'std'
( std::count_if( arrayIt->type.postfix.begin(), arrayIt->type.postfix.end(), []( char c ) { return c == '*'; } ) < 2 ) )
~~~~~^
5 errors generated.
```
Fixes #1175 together with the optional inclusion of vulkan_hash.hpp
2022-03-22 13:43:38 +01:00
asuessenbach
a104fd65d3
Combine two types of commands into one generation function.
2022-03-16 13:51:43 +01:00
asuessenbach
aca9dd319e
Add some error handling for a std::system call.
2022-03-16 09:35:26 +01:00
asuessenbach
ae11e13e0b
Combine two types of commands into one generation function.
...
Generation of functions that return a VkResult and either get some data or not are combined into one function.
+ some minor cleanup
2022-03-15 11:58:55 +01:00
Andreas Süßenbach
582bade14d
Merge pull request #1242 from asuessenbach/deprecated
...
Remove deprecated cpp_type.
2022-03-15 08:52:49 +01:00
Andreas Süßenbach
f759596be8
Merge pull request #1241 from asuessenbach/cleanup
...
Combine two types of commands into one generation function.
2022-03-14 17:32:33 +01:00
asuessenbach
cf5ecd7cc6
Remove deprecated cpp_type.
2022-03-14 15:13:33 +01:00
asuessenbach
f58ffe385f
Combine two types of commands into one generation function.
...
Generation of functions that get a StructureChain or some value are combined into one function.
2022-03-14 14:54:56 +01:00
asuessenbach
8a921fc90c
Explicitly mark a call to std::system() as void.
2022-03-14 10:56:20 +01:00
asuessenbach
2148249e0f
Minor cleanup work in command generation.
2022-03-10 17:41:47 +01:00
asuessenbach
611365b986
Updated clang_format options
2022-03-09 12:28:52 +01:00
asuessenbach
4fd8ad4baa
Minor cleanup work in command generation.
2022-03-09 10:13:51 +01:00
Andreas Süßenbach
d493aa4ab6
Merge pull request #1234 from theHamsta/fix-warnings
...
chore(warnings): fix warnings about unused variables in Release mode
2022-03-08 13:57:29 +01:00
Stephan Seitz
c747ca4588
chore(warnings): fix warnings about unused variables in Release mode
...
```
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:9105:12: error: unused variable 'constructorCommandIt' [-Werror,-Wunused-variable]
auto constructorCommandIt = m_commands.find( handle.second.constructorIts.front()->first );
^
/home/stephan/projects/Vulkan-Hpp/VulkanHppGenerator.cpp:9732:12: error: unused variable 'handleIt' [-Werror,-Wunused-variable]
auto handleIt = m_handles.find( "Vk" + parentType );
```
2022-03-08 11:46:03 +01:00
asuessenbach
7be761b203
Add template parameter support to generateCommandVoidGetChain.
2022-03-08 09:11:11 +01:00
asuessenbach
04cca4cfbc
Add template parameter support to generateCommandVoidGetValue.
2022-03-07 12:19:32 +01:00
asuessenbach
02cd5ee1c9
Combine two types of commands into one generation function.
2022-03-02 17:57:36 +01:00
asuessenbach
ffead3984d
Add some support of attribute "altlen" on command parameters.
2022-03-02 09:51:12 +01:00
asuessenbach
eb9aa3d948
Add support of functions getting a pointer to void.
2022-03-01 09:21:33 +01:00
asuessenbach
5fe410279a
Change ColumnLimit with clang-format from 120 to 160.
2022-02-28 10:11:04 +01:00
asuessenbach
85510bf12c
Combine two types of commands into one generation function.
2022-02-24 09:09:45 +01:00
asuessenbach
fe8fad5d96
Combine two types of commands into one generation function.
2022-02-23 08:31:36 +01:00
asuessenbach
7f58864c78
Combine two types of command into one generation function.
2022-02-22 10:03:17 +01:00
asuessenbach
1c39502170
Extract trait functions on vk::Format into the additional header vulkan_format_traits.hpp.
2022-02-21 10:11:25 +01:00
asuessenbach
3e1e23914e
Hide functions reflect() behind VULKAN_HPP_USE_REFLECT.
2022-02-17 09:53:32 +01:00
Andreas Süßenbach
12dac7ffaa
Merge pull request #1208 from asuessenbach/vector
...
Introduce explicit default construction on nullptr_t for vector-based raii-classes.
2022-02-16 14:08:24 +01:00
asuessenbach
782c4aa46c
Introduce explicit default construction on nullptr_t for vector-based raii-classes.
2022-02-16 09:51:18 +01:00
asuessenbach
815afe1f70
Introduce trait function componentName() and componentNumericFormat() on vk::Format.
2022-02-15 14:47:38 +01:00
asuessenbach
b8522e483c
Introduce member function clear() for raii-classes.
2022-02-15 10:50:52 +01:00
asuessenbach
b1a822983d
Introduce member function swap() for raii-classes.
2022-02-14 15:11:46 +01:00
asuessenbach
1b12dd8cbb
Enclose "free" in parenthesis to prevent interference with MSVC's debug free
2022-02-10 09:49:24 +01:00
asuessenbach
6f2dd058a0
Unified generation of a special type of commands.
...
Commands returning a VkResult with one or more error codes specified, getting no non-const pointer and zero or more vectors are combined into one function, no matter if it is specified to have one or more success codes.
2022-02-09 09:27:30 +01:00
asuessenbach
c25e890527
Remove support of all functions marked as deprecated.
2022-02-07 10:09:46 +01:00
asuessenbach
7135c7e1a3
Remove the 'allFlags' from the general FlagTraits struct to catch unintentional usage with something different than a supported FlagBitsType.
2022-02-03 17:34:43 +01:00
Andreas Süßenbach
bac1a58f80
Merge pull request #1188 from asuessenbach/function
...
Generalize command generation for a specific type of commands
2022-02-02 15:34:40 +01:00
Andreas Süßenbach
5156ca24af
Merge pull request #1186 from sugoi1/master
...
Fix 'missing braces around initializer' warnings in vulkan_enums.hpp
2022-02-02 12:11:04 +01:00