mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-12-26 10:45:29 +03:00
Move vkhpp
to it's own repository
This commit moves vkhpp (https://github.com/skyline-emu/vkhpp) to it's own repository and include it as a submodule instead
This commit is contained in:
parent
05f3e3c3ac
commit
63154d05d1
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -8,3 +8,6 @@
|
||||
path = app/libraries/oboe
|
||||
url = https://github.com/google/oboe
|
||||
branch = 1.3-stable
|
||||
[submodule "app/libraries/vkhpp"]
|
||||
path = app/libraries/vkhpp
|
||||
url = https://github.com/skyline-emu/vkhpp
|
||||
|
1
.idea/vcs.xml
generated
1
.idea/vcs.xml
generated
@ -5,5 +5,6 @@
|
||||
<mapping directory="$PROJECT_DIR$/app/libraries/fmt" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/app/libraries/oboe" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/app/libraries/tinyxml2" vcs="Git" />
|
||||
<mapping directory="$PROJECT_DIR$/app/libraries/vkhpp" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
@ -18,8 +18,8 @@ set(CMAKE_POLICY_DEFAULT_CMP0048 OLD)
|
||||
add_subdirectory("libraries/tinyxml2")
|
||||
add_subdirectory("libraries/fmt")
|
||||
add_subdirectory("libraries/oboe")
|
||||
include_directories(libraries/oboe/include)
|
||||
include_directories(libraries/VulkanHpp)
|
||||
include_directories("libraries/oboe/include")
|
||||
include_directories("libraries/vkhpp/include")
|
||||
set(CMAKE_POLICY_DEFAULT_CMP0048 NEW)
|
||||
|
||||
include_directories(${source_DIR}/skyline)
|
||||
|
@ -1,778 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <algorithm>
|
||||
#include <array>
|
||||
#include <cstddef>
|
||||
#include <cstdint>
|
||||
#include <cstring>
|
||||
#include <initializer_list>
|
||||
#include <string>
|
||||
#include <system_error>
|
||||
#include <tuple>
|
||||
#include <type_traits>
|
||||
#include <vulkan/vulkan.h>
|
||||
|
||||
#if defined(VULKAN_HPP_DISABLE_ENHANCED_MODE)
|
||||
# if !defined(VULKAN_HPP_NO_SMART_HANDLE)
|
||||
# define VULKAN_HPP_NO_SMART_HANDLE
|
||||
# endif
|
||||
#else
|
||||
# include <memory>
|
||||
# include <vector>
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_ASSERT)
|
||||
# include <cassert>
|
||||
# define VULKAN_HPP_ASSERT assert
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL)
|
||||
# define VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL 1
|
||||
#endif
|
||||
|
||||
#if VULKAN_HPP_ENABLE_DYNAMIC_LOADER_TOOL == 1
|
||||
# if defined(__linux__) || defined(__APPLE__)
|
||||
# include <dlfcn.h>
|
||||
# endif
|
||||
|
||||
# if defined(_WIN32)
|
||||
# include <windows.h>
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if 201711 <= __cpp_impl_three_way_comparison
|
||||
# define VULKAN_HPP_HAS_SPACESHIP_OPERATOR
|
||||
#endif
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
# include <compare>
|
||||
#endif
|
||||
|
||||
static_assert( VK_HEADER_VERSION == 121 , "Wrong VK_HEADER_VERSION!" );
|
||||
|
||||
// 32-bit vulkan is not typesafe for handles, so don't allow copy constructors on this platform by default.
|
||||
// To enable this feature on 32-bit platforms please define VULKAN_HPP_TYPESAFE_CONVERSION
|
||||
#if defined(__LP64__) || defined(_WIN64) || (defined(__x86_64__) && !defined(__ILP32__) ) || defined(_M_X64) || defined(__ia64) || defined (_M_IA64) || defined(__aarch64__) || defined(__powerpc64__)
|
||||
# if !defined( VULKAN_HPP_TYPESAFE_CONVERSION )
|
||||
# define VULKAN_HPP_TYPESAFE_CONVERSION
|
||||
# endif
|
||||
#endif
|
||||
|
||||
// <tuple> includes <sys/sysmacros.h> through some other header
|
||||
// this results in major(x) being resolved to gnu_dev_major(x)
|
||||
// which is an expression in a constructor initializer list.
|
||||
#if defined(major)
|
||||
#undef major
|
||||
#endif
|
||||
#if defined(minor)
|
||||
#undef minor
|
||||
#endif
|
||||
|
||||
// Windows defines MemoryBarrier which is deprecated and collides
|
||||
// with the VULKAN_HPP_NAMESPACE::MemoryBarrier struct.
|
||||
#if defined(MemoryBarrier)
|
||||
#undef MemoryBarrier
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_HAS_UNRESTRICTED_UNIONS)
|
||||
# if defined(__clang__)
|
||||
# if __has_feature(cxx_unrestricted_unions)
|
||||
# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS
|
||||
# endif
|
||||
# elif defined(__GNUC__)
|
||||
# define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||
# if 40600 <= GCC_VERSION
|
||||
# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS
|
||||
# endif
|
||||
# elif defined(_MSC_VER)
|
||||
# if 1900 <= _MSC_VER
|
||||
# define VULKAN_HPP_HAS_UNRESTRICTED_UNIONS
|
||||
# endif
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_INLINE)
|
||||
# if defined(__clang__)
|
||||
# if __has_attribute(always_inline)
|
||||
# define VULKAN_HPP_INLINE __attribute__((always_inline)) __inline__
|
||||
# else
|
||||
# define VULKAN_HPP_INLINE inline
|
||||
# endif
|
||||
# elif defined(__GNUC__)
|
||||
# define VULKAN_HPP_INLINE __attribute__((always_inline)) __inline__
|
||||
# elif defined(_MSC_VER)
|
||||
# define VULKAN_HPP_INLINE inline
|
||||
# else
|
||||
# define VULKAN_HPP_INLINE inline
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if defined(VULKAN_HPP_TYPESAFE_CONVERSION)
|
||||
# define VULKAN_HPP_TYPESAFE_EXPLICIT
|
||||
#else
|
||||
# define VULKAN_HPP_TYPESAFE_EXPLICIT explicit
|
||||
#endif
|
||||
|
||||
#if defined(__cpp_constexpr)
|
||||
# define VULKAN_HPP_CONSTEXPR constexpr
|
||||
# if __cpp_constexpr >= 201304
|
||||
# define VULKAN_HPP_CONSTEXPR_14 constexpr
|
||||
# else
|
||||
# define VULKAN_HPP_CONSTEXPR_14
|
||||
# endif
|
||||
# define VULKAN_HPP_CONST_OR_CONSTEXPR constexpr
|
||||
#else
|
||||
# define VULKAN_HPP_CONSTEXPR
|
||||
# define VULKAN_HPP_CONSTEXPR_14
|
||||
# define VULKAN_HPP_CONST_OR_CONSTEXPR const
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_NOEXCEPT)
|
||||
# if defined(_MSC_VER) && (_MSC_VER <= 1800)
|
||||
# define VULKAN_HPP_NOEXCEPT
|
||||
# else
|
||||
# define VULKAN_HPP_NOEXCEPT noexcept
|
||||
# define VULKAN_HPP_HAS_NOEXCEPT 1
|
||||
# endif
|
||||
#endif
|
||||
|
||||
#if !defined(VULKAN_HPP_NAMESPACE)
|
||||
#define VULKAN_HPP_NAMESPACE vk
|
||||
#endif
|
||||
|
||||
#define VULKAN_HPP_STRINGIFY2(text) #text
|
||||
#define VULKAN_HPP_STRINGIFY(text) VULKAN_HPP_STRINGIFY2(text)
|
||||
#define VULKAN_HPP_NAMESPACE_STRING VULKAN_HPP_STRINGIFY(VULKAN_HPP_NAMESPACE)
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
#if !defined(VULKAN_HPP_DISABLE_ENHANCED_MODE)
|
||||
template <typename T>
|
||||
class ArrayProxy
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR ArrayProxy(std::nullptr_t) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(0)
|
||||
, m_ptr(nullptr)
|
||||
{}
|
||||
|
||||
ArrayProxy(typename std::remove_reference<T>::type & ptr) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(1)
|
||||
, m_ptr(&ptr)
|
||||
{}
|
||||
|
||||
ArrayProxy(uint32_t count, T * ptr) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(count)
|
||||
, m_ptr(ptr)
|
||||
{}
|
||||
|
||||
template <size_t N>
|
||||
ArrayProxy(std::array<typename std::remove_const<T>::type, N> & data) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(N)
|
||||
, m_ptr(data.data())
|
||||
{}
|
||||
|
||||
template <size_t N>
|
||||
ArrayProxy(std::array<typename std::remove_const<T>::type, N> const& data) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(N)
|
||||
, m_ptr(data.data())
|
||||
{}
|
||||
|
||||
template <class Allocator = std::allocator<typename std::remove_const<T>::type>>
|
||||
ArrayProxy(std::vector<typename std::remove_const<T>::type, Allocator> & data) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(static_cast<uint32_t>(data.size()))
|
||||
, m_ptr(data.data())
|
||||
{}
|
||||
|
||||
template <class Allocator = std::allocator<typename std::remove_const<T>::type>>
|
||||
ArrayProxy(std::vector<typename std::remove_const<T>::type, Allocator> const& data) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(static_cast<uint32_t>(data.size()))
|
||||
, m_ptr(data.data())
|
||||
{}
|
||||
|
||||
ArrayProxy(std::initializer_list<typename std::remove_reference<T>::type> const& data) VULKAN_HPP_NOEXCEPT
|
||||
: m_count(static_cast<uint32_t>(data.end() - data.begin()))
|
||||
, m_ptr(data.begin())
|
||||
{}
|
||||
|
||||
const T * begin() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_ptr;
|
||||
}
|
||||
|
||||
const T * end() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_ptr + m_count;
|
||||
}
|
||||
|
||||
const T & front() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
VULKAN_HPP_ASSERT(m_count && m_ptr);
|
||||
return *m_ptr;
|
||||
}
|
||||
|
||||
const T & back() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
VULKAN_HPP_ASSERT(m_count && m_ptr);
|
||||
return *(m_ptr + m_count - 1);
|
||||
}
|
||||
|
||||
bool empty() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return (m_count == 0);
|
||||
}
|
||||
|
||||
uint32_t size() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_count;
|
||||
}
|
||||
|
||||
T * data() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_ptr;
|
||||
}
|
||||
|
||||
private:
|
||||
uint32_t m_count;
|
||||
T * m_ptr;
|
||||
};
|
||||
#endif
|
||||
|
||||
template <typename FlagBitsType> struct FlagTraits
|
||||
{
|
||||
enum { allFlags = 0 };
|
||||
};
|
||||
|
||||
template <typename BitType>
|
||||
class Flags
|
||||
{
|
||||
public:
|
||||
using MaskType = typename std::underlying_type<BitType>::type;
|
||||
|
||||
// constructors
|
||||
VULKAN_HPP_CONSTEXPR Flags() VULKAN_HPP_NOEXCEPT
|
||||
: m_mask(0)
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Flags(BitType bit) VULKAN_HPP_NOEXCEPT
|
||||
: m_mask(static_cast<MaskType>(bit))
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Flags(Flags<BitType> const& rhs) VULKAN_HPP_NOEXCEPT
|
||||
: m_mask(rhs.m_mask)
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR explicit Flags(MaskType flags) VULKAN_HPP_NOEXCEPT
|
||||
: m_mask(flags)
|
||||
{}
|
||||
|
||||
// relational operators
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>(Flags<BitType> const&) const = default;
|
||||
#else
|
||||
VULKAN_HPP_CONSTEXPR bool operator<(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask < rhs.m_mask;
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR bool operator<=(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask <= rhs.m_mask;
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR bool operator>(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask > rhs.m_mask;
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR bool operator>=(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask >= rhs.m_mask;
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR bool operator==(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask == rhs.m_mask;
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR bool operator!=(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask != rhs.m_mask;
|
||||
}
|
||||
#endif
|
||||
|
||||
// logical operator
|
||||
VULKAN_HPP_CONSTEXPR bool operator!() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !m_mask;
|
||||
}
|
||||
|
||||
// bitwise operators
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator&(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return Flags<BitType>(m_mask & rhs.m_mask);
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator|(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return Flags<BitType>(m_mask | rhs.m_mask);
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator^(Flags<BitType> const& rhs) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return Flags<BitType>(m_mask ^ rhs.m_mask);
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator~() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return Flags<BitType>(m_mask ^ FlagTraits<BitType>::allFlags);
|
||||
}
|
||||
|
||||
// assignment operators
|
||||
Flags<BitType> & operator=(Flags<BitType> const& rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
m_mask = rhs.m_mask;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Flags<BitType> & operator|=(Flags<BitType> const& rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
m_mask |= rhs.m_mask;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Flags<BitType> & operator&=(Flags<BitType> const& rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
m_mask &= rhs.m_mask;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Flags<BitType> & operator^=(Flags<BitType> const& rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
m_mask ^= rhs.m_mask;
|
||||
return *this;
|
||||
}
|
||||
|
||||
// cast operators
|
||||
explicit VULKAN_HPP_CONSTEXPR operator bool() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !!m_mask;
|
||||
}
|
||||
|
||||
explicit VULKAN_HPP_CONSTEXPR operator MaskType() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_mask;
|
||||
}
|
||||
|
||||
private:
|
||||
MaskType m_mask;
|
||||
};
|
||||
|
||||
#if !defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
// relational operators only needed for pre C++20
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator<(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags > bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator<=(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags >= bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator>(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags < bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator>=(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags <= bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator==(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags == bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR bool operator!=(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags != bit;
|
||||
}
|
||||
#endif
|
||||
|
||||
// bitwise operators
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator&(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags & bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator|(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags | bit;
|
||||
}
|
||||
|
||||
template <typename BitType>
|
||||
VULKAN_HPP_CONSTEXPR Flags<BitType> operator^(BitType bit, Flags<BitType> const& flags) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return flags ^ bit;
|
||||
}
|
||||
|
||||
template <typename RefType>
|
||||
class Optional
|
||||
{
|
||||
public:
|
||||
Optional(RefType & reference) VULKAN_HPP_NOEXCEPT { m_ptr = &reference; }
|
||||
Optional(RefType * ptr) VULKAN_HPP_NOEXCEPT { m_ptr = ptr; }
|
||||
Optional(std::nullptr_t) VULKAN_HPP_NOEXCEPT { m_ptr = nullptr; }
|
||||
|
||||
operator RefType*() const VULKAN_HPP_NOEXCEPT { return m_ptr; }
|
||||
RefType const* operator->() const VULKAN_HPP_NOEXCEPT { return m_ptr; }
|
||||
explicit operator bool() const VULKAN_HPP_NOEXCEPT { return !!m_ptr; }
|
||||
|
||||
private:
|
||||
RefType *m_ptr;
|
||||
};
|
||||
|
||||
template <typename X, typename Y> struct isStructureChainValid { enum { value = false }; };
|
||||
|
||||
template <typename P, typename T>
|
||||
struct TypeList
|
||||
{
|
||||
using list = P;
|
||||
using last = T;
|
||||
};
|
||||
|
||||
template <typename List, typename X>
|
||||
struct extendCheck
|
||||
{
|
||||
static const bool valid = isStructureChainValid<typename List::last, X>::value || extendCheck<typename List::list,X>::valid;
|
||||
};
|
||||
|
||||
template <typename T, typename X>
|
||||
struct extendCheck<TypeList<void,T>,X>
|
||||
{
|
||||
static const bool valid = isStructureChainValid<T, X>::value;
|
||||
};
|
||||
|
||||
template <typename X>
|
||||
struct extendCheck<void,X>
|
||||
{
|
||||
static const bool valid = true;
|
||||
};
|
||||
|
||||
template<typename Type, class...>
|
||||
struct isPartOfStructureChain
|
||||
{
|
||||
static const bool valid = false;
|
||||
};
|
||||
|
||||
template<typename Type, typename Head, typename... Tail>
|
||||
struct isPartOfStructureChain<Type, Head, Tail...>
|
||||
{
|
||||
static const bool valid = std::is_same<Type, Head>::value || isPartOfStructureChain<Type, Tail...>::valid;
|
||||
};
|
||||
|
||||
template <class Element>
|
||||
class StructureChainElement
|
||||
{
|
||||
public:
|
||||
explicit operator Element&() VULKAN_HPP_NOEXCEPT { return value; }
|
||||
explicit operator const Element&() const VULKAN_HPP_NOEXCEPT { return value; }
|
||||
private:
|
||||
Element value;
|
||||
};
|
||||
|
||||
template<typename ...StructureElements>
|
||||
class StructureChain : private StructureChainElement<StructureElements>...
|
||||
{
|
||||
public:
|
||||
StructureChain() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
link<void, StructureElements...>();
|
||||
}
|
||||
|
||||
StructureChain(StructureChain const &rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
linkAndCopy<void, StructureElements...>(rhs);
|
||||
}
|
||||
|
||||
StructureChain(StructureElements const &... elems) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
linkAndCopyElements<void, StructureElements...>(elems...);
|
||||
}
|
||||
|
||||
StructureChain& operator=(StructureChain const &rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
linkAndCopy<void, StructureElements...>(rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
template<typename ClassType> ClassType& get() VULKAN_HPP_NOEXCEPT { return static_cast<ClassType&>(*this);}
|
||||
|
||||
template<typename ClassType> const ClassType& get() const VULKAN_HPP_NOEXCEPT { return static_cast<const ClassType&>(*this);}
|
||||
|
||||
template<typename ClassTypeA, typename ClassTypeB, typename ...ClassTypes>
|
||||
std::tuple<ClassTypeA&, ClassTypeB&, ClassTypes&...> get()
|
||||
{
|
||||
return std::tie(get<ClassTypeA>(), get<ClassTypeB>(), get<ClassTypes>()...);
|
||||
}
|
||||
|
||||
template<typename ClassTypeA, typename ClassTypeB, typename ...ClassTypes>
|
||||
std::tuple<const ClassTypeA&, const ClassTypeB&, const ClassTypes&...> get() const
|
||||
{
|
||||
return std::tie(get<ClassTypeA>(), get<ClassTypeB>(), get<ClassTypes>()...);
|
||||
}
|
||||
|
||||
template<typename ClassType>
|
||||
void unlink() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(isPartOfStructureChain<ClassType, StructureElements...>::valid, "Can't unlink Structure that's not part of this StructureChain!");
|
||||
static_assert(!std::is_same<ClassType, typename std::tuple_element<0, std::tuple<StructureElements...>>::type>::value, "It's not allowed to unlink the first element!");
|
||||
VkBaseOutStructure * ptr = reinterpret_cast<VkBaseOutStructure*>(&get<ClassType>());
|
||||
VULKAN_HPP_ASSERT(ptr != nullptr);
|
||||
VkBaseOutStructure ** ppNext = &(reinterpret_cast<VkBaseOutStructure*>(this)->pNext);
|
||||
VULKAN_HPP_ASSERT(*ppNext != nullptr);
|
||||
while (*ppNext != ptr)
|
||||
{
|
||||
ppNext = &(*ppNext)->pNext;
|
||||
VULKAN_HPP_ASSERT(*ppNext != nullptr); // fires, if the ClassType member has already been unlinked !
|
||||
}
|
||||
VULKAN_HPP_ASSERT(*ppNext == ptr);
|
||||
*ppNext = (*ppNext)->pNext;
|
||||
}
|
||||
|
||||
template <typename ClassType>
|
||||
void relink() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(isPartOfStructureChain<ClassType, StructureElements...>::valid, "Can't relink Structure that's not part of this StructureChain!");
|
||||
static_assert(!std::is_same<ClassType, typename std::tuple_element<0, std::tuple<StructureElements...>>::type>::value, "It's not allowed to have the first element unlinked!");
|
||||
VkBaseOutStructure * ptr = reinterpret_cast<VkBaseOutStructure*>(&get<ClassType>());
|
||||
VULKAN_HPP_ASSERT(ptr != nullptr);
|
||||
VkBaseOutStructure ** ppNext = &(reinterpret_cast<VkBaseOutStructure*>(this)->pNext);
|
||||
VULKAN_HPP_ASSERT(*ppNext != nullptr);
|
||||
#if !defined(NDEBUG)
|
||||
while (*ppNext)
|
||||
{
|
||||
VULKAN_HPP_ASSERT(*ppNext != ptr); // fires, if the ClassType member has not been unlinked before
|
||||
ppNext = &(*ppNext)->pNext;
|
||||
}
|
||||
ppNext = &(reinterpret_cast<VkBaseOutStructure*>(this)->pNext);
|
||||
#endif
|
||||
ptr->pNext = *ppNext;
|
||||
*ppNext = ptr;
|
||||
}
|
||||
|
||||
private:
|
||||
template<typename List, typename X>
|
||||
void link() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List, X>::valid, "The structure chain is not valid!");
|
||||
}
|
||||
|
||||
template<typename List, typename X, typename Y, typename ...Z>
|
||||
void link() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List,X>::valid, "The structure chain is not valid!");
|
||||
X& x = static_cast<X&>(*this);
|
||||
Y& y = static_cast<Y&>(*this);
|
||||
x.pNext = &y;
|
||||
link<TypeList<List, X>, Y, Z...>();
|
||||
}
|
||||
|
||||
template<typename List, typename X>
|
||||
void linkAndCopy(StructureChain const &rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List, X>::valid, "The structure chain is not valid!");
|
||||
static_cast<X&>(*this) = static_cast<X const &>(rhs);
|
||||
}
|
||||
|
||||
template<typename List, typename X, typename Y, typename ...Z>
|
||||
void linkAndCopy(StructureChain const &rhs) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List, X>::valid, "The structure chain is not valid!");
|
||||
X& x = static_cast<X&>(*this);
|
||||
Y& y = static_cast<Y&>(*this);
|
||||
x = static_cast<X const &>(rhs);
|
||||
x.pNext = &y;
|
||||
linkAndCopy<TypeList<List, X>, Y, Z...>(rhs);
|
||||
}
|
||||
|
||||
template<typename List, typename X>
|
||||
void linkAndCopyElements(X const &xelem) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List, X>::valid, "The structure chain is not valid!");
|
||||
static_cast<X&>(*this) = xelem;
|
||||
}
|
||||
|
||||
template<typename List, typename X, typename Y, typename ...Z>
|
||||
void linkAndCopyElements(X const &xelem, Y const &yelem, Z const &... zelem) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static_assert(extendCheck<List, X>::valid, "The structure chain is not valid!");
|
||||
X& x = static_cast<X&>(*this);
|
||||
Y& y = static_cast<Y&>(*this);
|
||||
x = xelem;
|
||||
x.pNext = &y;
|
||||
linkAndCopyElements<TypeList<List, X>, Y, Z...>(yelem, zelem...);
|
||||
}
|
||||
};
|
||||
|
||||
#if !defined(VULKAN_HPP_NO_SMART_HANDLE)
|
||||
template <typename Type, typename Dispatch> class UniqueHandleTraits;
|
||||
|
||||
template <typename Type, typename Dispatch>
|
||||
class UniqueHandle : public UniqueHandleTraits<Type,Dispatch>::deleter
|
||||
{
|
||||
private:
|
||||
using Deleter = typename UniqueHandleTraits<Type,Dispatch>::deleter;
|
||||
|
||||
public:
|
||||
using element_type = Type;
|
||||
|
||||
UniqueHandle()
|
||||
: Deleter()
|
||||
, m_value()
|
||||
{}
|
||||
|
||||
explicit UniqueHandle( Type const& value, Deleter const& deleter = Deleter() ) VULKAN_HPP_NOEXCEPT
|
||||
: Deleter( deleter)
|
||||
, m_value( value )
|
||||
{}
|
||||
|
||||
UniqueHandle( UniqueHandle const& ) = delete;
|
||||
|
||||
UniqueHandle( UniqueHandle && other ) VULKAN_HPP_NOEXCEPT
|
||||
: Deleter( std::move( static_cast<Deleter&>( other ) ) )
|
||||
, m_value( other.release() )
|
||||
{}
|
||||
|
||||
~UniqueHandle() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
if ( m_value ) this->destroy( m_value );
|
||||
}
|
||||
|
||||
UniqueHandle & operator=( UniqueHandle const& ) = delete;
|
||||
|
||||
UniqueHandle & operator=( UniqueHandle && other ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
reset( other.release() );
|
||||
*static_cast<Deleter*>(this) = std::move( static_cast<Deleter&>(other) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
explicit operator bool() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_value.operator bool();
|
||||
}
|
||||
|
||||
Type const* operator->() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return &m_value;
|
||||
}
|
||||
|
||||
Type * operator->() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return &m_value;
|
||||
}
|
||||
|
||||
Type const& operator*() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
Type & operator*() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
const Type & get() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
Type & get() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return m_value;
|
||||
}
|
||||
|
||||
void reset( Type const& value = Type() ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
if ( m_value != value )
|
||||
{
|
||||
if ( m_value ) this->destroy( m_value );
|
||||
m_value = value;
|
||||
}
|
||||
}
|
||||
|
||||
Type release() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
Type value = m_value;
|
||||
m_value = nullptr;
|
||||
return value;
|
||||
}
|
||||
|
||||
void swap( UniqueHandle<Type,Dispatch> & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
std::swap(m_value, rhs.m_value);
|
||||
std::swap(static_cast<Deleter&>(*this), static_cast<Deleter&>(rhs));
|
||||
}
|
||||
|
||||
private:
|
||||
Type m_value;
|
||||
};
|
||||
|
||||
template <typename UniqueType>
|
||||
VULKAN_HPP_INLINE std::vector<typename UniqueType::element_type> uniqueToRaw(std::vector<UniqueType> const& handles)
|
||||
{
|
||||
std::vector<typename UniqueType::element_type> newBuffer(handles.size());
|
||||
std::transform(handles.begin(), handles.end(), newBuffer.begin(), [](UniqueType const& handle) { return handle.get(); });
|
||||
return newBuffer;
|
||||
}
|
||||
|
||||
template <typename Type, typename Dispatch>
|
||||
VULKAN_HPP_INLINE void swap( UniqueHandle<Type,Dispatch> & lhs, UniqueHandle<Type,Dispatch> & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
lhs.swap( rhs );
|
||||
}
|
||||
#endif
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,185 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result createInstance( const VULKAN_HPP_NAMESPACE::InstanceCreateInfo* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::Instance* pInstance, Dispatch const &d) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateInstance( reinterpret_cast<const VkInstanceCreateInfo*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkInstance*>( pInstance ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::Instance>::type createInstance( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d )
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::Instance instance;
|
||||
Result result = static_cast<Result>( d.vkCreateInstance( reinterpret_cast<const VkInstanceCreateInfo*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkInstance*>( &instance ) ) );
|
||||
return createResultValue( result, instance, VULKAN_HPP_NAMESPACE_STRING"::createInstance" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<Instance,Dispatch>>::type createInstanceUnique( const InstanceCreateInfo & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d )
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::Instance instance;
|
||||
Result result = static_cast<Result>( d.vkCreateInstance( reinterpret_cast<const VkInstanceCreateInfo*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkInstance*>( &instance ) ) );
|
||||
|
||||
ObjectDestroy<NoParent,Dispatch> deleter( allocator, d );
|
||||
return createResultValue<Instance,Dispatch>( result, instance, VULKAN_HPP_NAMESPACE_STRING"::createInstanceUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result enumerateInstanceExtensionProperties( const char* pLayerName, uint32_t* pPropertyCount, VULKAN_HPP_NAMESPACE::ExtensionProperties* pProperties, Dispatch const &d) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumerateInstanceExtensionProperties( pLayerName, pPropertyCount, reinterpret_cast<VkExtensionProperties*>( pProperties ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<ExtensionProperties,Allocator>>::type enumerateInstanceExtensionProperties( Optional<const std::string> layerName, Dispatch const &d )
|
||||
{
|
||||
std::vector<ExtensionProperties,Allocator> properties;
|
||||
uint32_t propertyCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||
{
|
||||
properties.resize( propertyCount );
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, reinterpret_cast<VkExtensionProperties*>( properties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||
properties.resize( propertyCount );
|
||||
}
|
||||
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::enumerateInstanceExtensionProperties" );
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<ExtensionProperties,Allocator>>::type enumerateInstanceExtensionProperties( Optional<const std::string> layerName, Allocator const& vectorAllocator, Dispatch const &d )
|
||||
{
|
||||
std::vector<ExtensionProperties,Allocator> properties( vectorAllocator );
|
||||
uint32_t propertyCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||
{
|
||||
properties.resize( propertyCount );
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceExtensionProperties( layerName ? layerName->c_str() : nullptr, &propertyCount, reinterpret_cast<VkExtensionProperties*>( properties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||
properties.resize( propertyCount );
|
||||
}
|
||||
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::enumerateInstanceExtensionProperties" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result enumerateInstanceLayerProperties( uint32_t* pPropertyCount, VULKAN_HPP_NAMESPACE::LayerProperties* pProperties, Dispatch const &d) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumerateInstanceLayerProperties( pPropertyCount, reinterpret_cast<VkLayerProperties*>( pProperties ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<LayerProperties,Allocator>>::type enumerateInstanceLayerProperties(Dispatch const &d )
|
||||
{
|
||||
std::vector<LayerProperties,Allocator> properties;
|
||||
uint32_t propertyCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceLayerProperties( &propertyCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||
{
|
||||
properties.resize( propertyCount );
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceLayerProperties( &propertyCount, reinterpret_cast<VkLayerProperties*>( properties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||
properties.resize( propertyCount );
|
||||
}
|
||||
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::enumerateInstanceLayerProperties" );
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<LayerProperties,Allocator>>::type enumerateInstanceLayerProperties(Allocator const& vectorAllocator, Dispatch const &d )
|
||||
{
|
||||
std::vector<LayerProperties,Allocator> properties( vectorAllocator );
|
||||
uint32_t propertyCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceLayerProperties( &propertyCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && propertyCount )
|
||||
{
|
||||
properties.resize( propertyCount );
|
||||
result = static_cast<Result>( d.vkEnumerateInstanceLayerProperties( &propertyCount, reinterpret_cast<VkLayerProperties*>( properties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( propertyCount <= properties.size() );
|
||||
properties.resize( propertyCount );
|
||||
}
|
||||
return createResultValue( result, properties, VULKAN_HPP_NAMESPACE_STRING"::enumerateInstanceLayerProperties" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result enumerateInstanceVersion( uint32_t* pApiVersion, Dispatch const &d) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumerateInstanceVersion( pApiVersion ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<uint32_t>::type enumerateInstanceVersion(Dispatch const &d )
|
||||
{
|
||||
uint32_t apiVersion;
|
||||
Result result = static_cast<Result>( d.vkEnumerateInstanceVersion( &apiVersion ) );
|
||||
return createResultValue( result, apiVersion, VULKAN_HPP_NAMESPACE_STRING"::enumerateInstanceVersion" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,746 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createAndroidSurfaceKHR( const VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateAndroidSurfaceKHR( m_instance, reinterpret_cast<const VkAndroidSurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createAndroidSurfaceKHR( const AndroidSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateAndroidSurfaceKHR( m_instance, reinterpret_cast<const VkAndroidSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createAndroidSurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createAndroidSurfaceKHRUnique( const AndroidSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateAndroidSurfaceKHR( m_instance, reinterpret_cast<const VkAndroidSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createAndroidSurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createDebugReportCallbackEXT( const VULKAN_HPP_NAMESPACE::DebugReportCallbackCreateInfoEXT* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT* pCallback, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateDebugReportCallbackEXT( m_instance, reinterpret_cast<const VkDebugReportCallbackCreateInfoEXT*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkDebugReportCallbackEXT*>( pCallback ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT>::type Instance::createDebugReportCallbackEXT( const DebugReportCallbackCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback;
|
||||
Result result = static_cast<Result>( d.vkCreateDebugReportCallbackEXT( m_instance, reinterpret_cast<const VkDebugReportCallbackCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkDebugReportCallbackEXT*>( &callback ) ) );
|
||||
return createResultValue( result, callback, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDebugReportCallbackEXT" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<DebugReportCallbackEXT,Dispatch>>::type Instance::createDebugReportCallbackEXTUnique( const DebugReportCallbackCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback;
|
||||
Result result = static_cast<Result>( d.vkCreateDebugReportCallbackEXT( m_instance, reinterpret_cast<const VkDebugReportCallbackCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkDebugReportCallbackEXT*>( &callback ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<DebugReportCallbackEXT,Dispatch>( result, callback, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDebugReportCallbackEXTUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createDebugUtilsMessengerEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCreateInfoEXT* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT* pMessenger, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateDebugUtilsMessengerEXT( m_instance, reinterpret_cast<const VkDebugUtilsMessengerCreateInfoEXT*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkDebugUtilsMessengerEXT*>( pMessenger ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT>::type Instance::createDebugUtilsMessengerEXT( const DebugUtilsMessengerCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger;
|
||||
Result result = static_cast<Result>( d.vkCreateDebugUtilsMessengerEXT( m_instance, reinterpret_cast<const VkDebugUtilsMessengerCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkDebugUtilsMessengerEXT*>( &messenger ) ) );
|
||||
return createResultValue( result, messenger, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDebugUtilsMessengerEXT" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<DebugUtilsMessengerEXT,Dispatch>>::type Instance::createDebugUtilsMessengerEXTUnique( const DebugUtilsMessengerCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger;
|
||||
Result result = static_cast<Result>( d.vkCreateDebugUtilsMessengerEXT( m_instance, reinterpret_cast<const VkDebugUtilsMessengerCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkDebugUtilsMessengerEXT*>( &messenger ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<DebugUtilsMessengerEXT,Dispatch>( result, messenger, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDebugUtilsMessengerEXTUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createDisplayPlaneSurfaceKHR( const VULKAN_HPP_NAMESPACE::DisplaySurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateDisplayPlaneSurfaceKHR( m_instance, reinterpret_cast<const VkDisplaySurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createDisplayPlaneSurfaceKHR( const DisplaySurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateDisplayPlaneSurfaceKHR( m_instance, reinterpret_cast<const VkDisplaySurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDisplayPlaneSurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createDisplayPlaneSurfaceKHRUnique( const DisplaySurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateDisplayPlaneSurfaceKHR( m_instance, reinterpret_cast<const VkDisplaySurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createDisplayPlaneSurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createHeadlessSurfaceEXT( const VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateHeadlessSurfaceEXT( m_instance, reinterpret_cast<const VkHeadlessSurfaceCreateInfoEXT*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createHeadlessSurfaceEXT( const HeadlessSurfaceCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateHeadlessSurfaceEXT( m_instance, reinterpret_cast<const VkHeadlessSurfaceCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createHeadlessSurfaceEXT" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createHeadlessSurfaceEXTUnique( const HeadlessSurfaceCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateHeadlessSurfaceEXT( m_instance, reinterpret_cast<const VkHeadlessSurfaceCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createHeadlessSurfaceEXTUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_IOS_MVK
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createIOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateIOSSurfaceMVK( m_instance, reinterpret_cast<const VkIOSSurfaceCreateInfoMVK*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createIOSSurfaceMVK( const IOSSurfaceCreateInfoMVK & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateIOSSurfaceMVK( m_instance, reinterpret_cast<const VkIOSSurfaceCreateInfoMVK*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createIOSSurfaceMVK" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createIOSSurfaceMVKUnique( const IOSSurfaceCreateInfoMVK & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateIOSSurfaceMVK( m_instance, reinterpret_cast<const VkIOSSurfaceCreateInfoMVK*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createIOSSurfaceMVKUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_IOS_MVK*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_FUCHSIA
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createImagePipeSurfaceFUCHSIA( const VULKAN_HPP_NAMESPACE::ImagePipeSurfaceCreateInfoFUCHSIA* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateImagePipeSurfaceFUCHSIA( m_instance, reinterpret_cast<const VkImagePipeSurfaceCreateInfoFUCHSIA*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createImagePipeSurfaceFUCHSIA( const ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateImagePipeSurfaceFUCHSIA( m_instance, reinterpret_cast<const VkImagePipeSurfaceCreateInfoFUCHSIA*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createImagePipeSurfaceFUCHSIA" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createImagePipeSurfaceFUCHSIAUnique( const ImagePipeSurfaceCreateInfoFUCHSIA & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateImagePipeSurfaceFUCHSIA( m_instance, reinterpret_cast<const VkImagePipeSurfaceCreateInfoFUCHSIA*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createImagePipeSurfaceFUCHSIAUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_FUCHSIA*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createMacOSSurfaceMVK( const VULKAN_HPP_NAMESPACE::MacOSSurfaceCreateInfoMVK* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateMacOSSurfaceMVK( m_instance, reinterpret_cast<const VkMacOSSurfaceCreateInfoMVK*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createMacOSSurfaceMVK( const MacOSSurfaceCreateInfoMVK & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateMacOSSurfaceMVK( m_instance, reinterpret_cast<const VkMacOSSurfaceCreateInfoMVK*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createMacOSSurfaceMVK" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createMacOSSurfaceMVKUnique( const MacOSSurfaceCreateInfoMVK & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateMacOSSurfaceMVK( m_instance, reinterpret_cast<const VkMacOSSurfaceCreateInfoMVK*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createMacOSSurfaceMVKUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_MACOS_MVK*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_METAL_EXT
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createMetalSurfaceEXT( const VULKAN_HPP_NAMESPACE::MetalSurfaceCreateInfoEXT* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateMetalSurfaceEXT( m_instance, reinterpret_cast<const VkMetalSurfaceCreateInfoEXT*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createMetalSurfaceEXT( const MetalSurfaceCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateMetalSurfaceEXT( m_instance, reinterpret_cast<const VkMetalSurfaceCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createMetalSurfaceEXT" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createMetalSurfaceEXTUnique( const MetalSurfaceCreateInfoEXT & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateMetalSurfaceEXT( m_instance, reinterpret_cast<const VkMetalSurfaceCreateInfoEXT*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createMetalSurfaceEXTUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_METAL_EXT*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_GGP
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createStreamDescriptorSurfaceGGP( const VULKAN_HPP_NAMESPACE::StreamDescriptorSurfaceCreateInfoGGP* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateStreamDescriptorSurfaceGGP( m_instance, reinterpret_cast<const VkStreamDescriptorSurfaceCreateInfoGGP*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createStreamDescriptorSurfaceGGP( const StreamDescriptorSurfaceCreateInfoGGP & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateStreamDescriptorSurfaceGGP( m_instance, reinterpret_cast<const VkStreamDescriptorSurfaceCreateInfoGGP*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createStreamDescriptorSurfaceGGP" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createStreamDescriptorSurfaceGGPUnique( const StreamDescriptorSurfaceCreateInfoGGP & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateStreamDescriptorSurfaceGGP( m_instance, reinterpret_cast<const VkStreamDescriptorSurfaceCreateInfoGGP*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createStreamDescriptorSurfaceGGPUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_GGP*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_VI_NN
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createViSurfaceNN( const VULKAN_HPP_NAMESPACE::ViSurfaceCreateInfoNN* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateViSurfaceNN( m_instance, reinterpret_cast<const VkViSurfaceCreateInfoNN*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createViSurfaceNN( const ViSurfaceCreateInfoNN & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateViSurfaceNN( m_instance, reinterpret_cast<const VkViSurfaceCreateInfoNN*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createViSurfaceNN" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createViSurfaceNNUnique( const ViSurfaceCreateInfoNN & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateViSurfaceNN( m_instance, reinterpret_cast<const VkViSurfaceCreateInfoNN*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createViSurfaceNNUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_VI_NN*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createWaylandSurfaceKHR( const VULKAN_HPP_NAMESPACE::WaylandSurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateWaylandSurfaceKHR( m_instance, reinterpret_cast<const VkWaylandSurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createWaylandSurfaceKHR( const WaylandSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateWaylandSurfaceKHR( m_instance, reinterpret_cast<const VkWaylandSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createWaylandSurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createWaylandSurfaceKHRUnique( const WaylandSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateWaylandSurfaceKHR( m_instance, reinterpret_cast<const VkWaylandSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createWaylandSurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createWin32SurfaceKHR( const VULKAN_HPP_NAMESPACE::Win32SurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateWin32SurfaceKHR( m_instance, reinterpret_cast<const VkWin32SurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createWin32SurfaceKHR( const Win32SurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateWin32SurfaceKHR( m_instance, reinterpret_cast<const VkWin32SurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createWin32SurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createWin32SurfaceKHRUnique( const Win32SurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateWin32SurfaceKHR( m_instance, reinterpret_cast<const VkWin32SurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createWin32SurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_XCB_KHR
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createXcbSurfaceKHR( const VULKAN_HPP_NAMESPACE::XcbSurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateXcbSurfaceKHR( m_instance, reinterpret_cast<const VkXcbSurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createXcbSurfaceKHR( const XcbSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateXcbSurfaceKHR( m_instance, reinterpret_cast<const VkXcbSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createXcbSurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createXcbSurfaceKHRUnique( const XcbSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateXcbSurfaceKHR( m_instance, reinterpret_cast<const VkXcbSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createXcbSurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_XCB_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::createXlibSurfaceKHR( const VULKAN_HPP_NAMESPACE::XlibSurfaceCreateInfoKHR* pCreateInfo, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, VULKAN_HPP_NAMESPACE::SurfaceKHR* pSurface, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkCreateXlibSurfaceKHR( m_instance, reinterpret_cast<const VkXlibSurfaceCreateInfoKHR*>( pCreateInfo ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ), reinterpret_cast<VkSurfaceKHR*>( pSurface ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<VULKAN_HPP_NAMESPACE::SurfaceKHR>::type Instance::createXlibSurfaceKHR( const XlibSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateXlibSurfaceKHR( m_instance, reinterpret_cast<const VkXlibSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
return createResultValue( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createXlibSurfaceKHR" );
|
||||
}
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<SurfaceKHR,Dispatch>>::type Instance::createXlibSurfaceKHRUnique( const XlibSurfaceCreateInfoKHR & createInfo, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::SurfaceKHR surface;
|
||||
Result result = static_cast<Result>( d.vkCreateXlibSurfaceKHR( m_instance, reinterpret_cast<const VkXlibSurfaceCreateInfoKHR*>( &createInfo ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ), reinterpret_cast<VkSurfaceKHR*>( &surface ) ) );
|
||||
|
||||
ObjectDestroy<Instance,Dispatch> deleter( *this, allocator, d );
|
||||
return createResultValue<SurfaceKHR,Dispatch>( result, surface, VULKAN_HPP_NAMESPACE_STRING"::Instance::createXlibSurfaceKHRUnique", deleter );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_SMART_HANDLE*/
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
#endif /*VK_USE_PLATFORM_XLIB_KHR*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const char* pLayerPrefix, const char* pMessage, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDebugReportMessageEXT( m_instance, static_cast<VkDebugReportFlagsEXT>( flags ), static_cast<VkDebugReportObjectTypeEXT>( objectType ), object, location, messageCode, pLayerPrefix, pMessage );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::debugReportMessageEXT( VULKAN_HPP_NAMESPACE::DebugReportFlagsEXT flags, VULKAN_HPP_NAMESPACE::DebugReportObjectTypeEXT objectType, uint64_t object, size_t location, int32_t messageCode, const std::string & layerPrefix, const std::string & message, Dispatch const &d ) const
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
VULKAN_HPP_ASSERT( layerPrefix.size() == message.size() );
|
||||
#else
|
||||
if ( layerPrefix.size() != message.size() )
|
||||
{
|
||||
throw LogicError( VULKAN_HPP_NAMESPACE_STRING "::VkInstance::debugReportMessageEXT: layerPrefix.size() != message.size()" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_NO_EXCEPTIONS*/
|
||||
d.vkDebugReportMessageEXT( m_instance, static_cast<VkDebugReportFlagsEXT>( flags ), static_cast<VkDebugReportObjectTypeEXT>( objectType ), object, location, messageCode, layerPrefix.c_str(), message.c_str() );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroyDebugReportCallbackEXT( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugReportCallbackEXT( m_instance, static_cast<VkDebugReportCallbackEXT>( callback ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroyDebugReportCallbackEXT( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugReportCallbackEXT( m_instance, static_cast<VkDebugReportCallbackEXT>( callback ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugReportCallbackEXT( m_instance, static_cast<VkDebugReportCallbackEXT>( callback ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugReportCallbackEXT callback, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugReportCallbackEXT( m_instance, static_cast<VkDebugReportCallbackEXT>( callback ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroyDebugUtilsMessengerEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugUtilsMessengerEXT( m_instance, static_cast<VkDebugUtilsMessengerEXT>( messenger ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroyDebugUtilsMessengerEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugUtilsMessengerEXT( m_instance, static_cast<VkDebugUtilsMessengerEXT>( messenger ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugUtilsMessengerEXT( m_instance, static_cast<VkDebugUtilsMessengerEXT>( messenger ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::DebugUtilsMessengerEXT messenger, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyDebugUtilsMessengerEXT( m_instance, static_cast<VkDebugUtilsMessengerEXT>( messenger ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyInstance( m_instance, reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroyInstance( m_instance, reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroySurfaceKHR( m_instance, static_cast<VkSurfaceKHR>( surface ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroySurfaceKHR( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroySurfaceKHR( m_instance, static_cast<VkSurfaceKHR>( surface ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, const VULKAN_HPP_NAMESPACE::AllocationCallbacks* pAllocator, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroySurfaceKHR( m_instance, static_cast<VkSurfaceKHR>( surface ), reinterpret_cast<const VkAllocationCallbacks*>( pAllocator ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::destroy( VULKAN_HPP_NAMESPACE::SurfaceKHR surface, Optional<const AllocationCallbacks> allocator, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkDestroySurfaceKHR( m_instance, static_cast<VkSurfaceKHR>( surface ), reinterpret_cast<const VkAllocationCallbacks*>( static_cast<const AllocationCallbacks*>( allocator ) ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::enumeratePhysicalDeviceGroups( uint32_t* pPhysicalDeviceGroupCount, VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, pPhysicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( pPhysicalDeviceGroupProperties ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDeviceGroupProperties,Allocator>>::type Instance::enumeratePhysicalDeviceGroups(Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDeviceGroupProperties,Allocator> physicalDeviceGroupProperties;
|
||||
uint32_t physicalDeviceGroupCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount )
|
||||
{
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( physicalDeviceGroupProperties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() );
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
}
|
||||
return createResultValue( result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDeviceGroups" );
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDeviceGroupProperties,Allocator>>::type Instance::enumeratePhysicalDeviceGroups(Allocator const& vectorAllocator, Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDeviceGroupProperties,Allocator> physicalDeviceGroupProperties( vectorAllocator );
|
||||
uint32_t physicalDeviceGroupCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount )
|
||||
{
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( physicalDeviceGroupProperties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() );
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
}
|
||||
return createResultValue( result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDeviceGroups" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::enumeratePhysicalDeviceGroupsKHR( uint32_t* pPhysicalDeviceGroupCount, VULKAN_HPP_NAMESPACE::PhysicalDeviceGroupProperties* pPhysicalDeviceGroupProperties, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, pPhysicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( pPhysicalDeviceGroupProperties ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDeviceGroupProperties,Allocator>>::type Instance::enumeratePhysicalDeviceGroupsKHR(Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDeviceGroupProperties,Allocator> physicalDeviceGroupProperties;
|
||||
uint32_t physicalDeviceGroupCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount )
|
||||
{
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( physicalDeviceGroupProperties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() );
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
}
|
||||
return createResultValue( result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDeviceGroupsKHR" );
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDeviceGroupProperties,Allocator>>::type Instance::enumeratePhysicalDeviceGroupsKHR(Allocator const& vectorAllocator, Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDeviceGroupProperties,Allocator> physicalDeviceGroupProperties( vectorAllocator );
|
||||
uint32_t physicalDeviceGroupCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceGroupCount )
|
||||
{
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDeviceGroups( m_instance, &physicalDeviceGroupCount, reinterpret_cast<VkPhysicalDeviceGroupProperties*>( physicalDeviceGroupProperties.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceGroupCount <= physicalDeviceGroupProperties.size() );
|
||||
physicalDeviceGroupProperties.resize( physicalDeviceGroupCount );
|
||||
}
|
||||
return createResultValue( result, physicalDeviceGroupProperties, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDeviceGroupsKHR" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Instance::enumeratePhysicalDevices( uint32_t* pPhysicalDeviceCount, VULKAN_HPP_NAMESPACE::PhysicalDevice* pPhysicalDevices, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkEnumeratePhysicalDevices( m_instance, pPhysicalDeviceCount, reinterpret_cast<VkPhysicalDevice*>( pPhysicalDevices ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDevice,Allocator>>::type Instance::enumeratePhysicalDevices(Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDevice,Allocator> physicalDevices;
|
||||
uint32_t physicalDeviceCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceCount )
|
||||
{
|
||||
physicalDevices.resize( physicalDeviceCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, reinterpret_cast<VkPhysicalDevice*>( physicalDevices.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceCount <= physicalDevices.size() );
|
||||
physicalDevices.resize( physicalDeviceCount );
|
||||
}
|
||||
return createResultValue( result, physicalDevices, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDevices" );
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<std::vector<PhysicalDevice,Allocator>>::type Instance::enumeratePhysicalDevices(Allocator const& vectorAllocator, Dispatch const &d ) const
|
||||
{
|
||||
std::vector<PhysicalDevice,Allocator> physicalDevices( vectorAllocator );
|
||||
uint32_t physicalDeviceCount;
|
||||
Result result;
|
||||
do
|
||||
{
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, nullptr ) );
|
||||
if ( ( result == Result::eSuccess ) && physicalDeviceCount )
|
||||
{
|
||||
physicalDevices.resize( physicalDeviceCount );
|
||||
result = static_cast<Result>( d.vkEnumeratePhysicalDevices( m_instance, &physicalDeviceCount, reinterpret_cast<VkPhysicalDevice*>( physicalDevices.data() ) ) );
|
||||
}
|
||||
} while ( result == Result::eIncomplete );
|
||||
if ( result == Result::eSuccess )
|
||||
{
|
||||
VULKAN_HPP_ASSERT( physicalDeviceCount <= physicalDevices.size() );
|
||||
physicalDevices.resize( physicalDeviceCount );
|
||||
}
|
||||
return createResultValue( result, physicalDevices, VULKAN_HPP_NAMESPACE_STRING"::Instance::enumeratePhysicalDevices" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE PFN_vkVoidFunction Instance::getProcAddr( const char* pName, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return d.vkGetInstanceProcAddr( m_instance, pName );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE PFN_vkVoidFunction Instance::getProcAddr( const std::string & name, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return d.vkGetInstanceProcAddr( m_instance, name.c_str() );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::submitDebugUtilsMessageEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, const VULKAN_HPP_NAMESPACE::DebugUtilsMessengerCallbackDataEXT* pCallbackData, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkSubmitDebugUtilsMessageEXT( m_instance, static_cast<VkDebugUtilsMessageSeverityFlagBitsEXT>( messageSeverity ), static_cast<VkDebugUtilsMessageTypeFlagsEXT>( messageTypes ), reinterpret_cast<const VkDebugUtilsMessengerCallbackDataEXT*>( pCallbackData ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Instance::submitDebugUtilsMessageEXT( VULKAN_HPP_NAMESPACE::DebugUtilsMessageSeverityFlagBitsEXT messageSeverity, VULKAN_HPP_NAMESPACE::DebugUtilsMessageTypeFlagsEXT messageTypes, const DebugUtilsMessengerCallbackDataEXT & callbackData, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkSubmitDebugUtilsMessageEXT( m_instance, static_cast<VkDebugUtilsMessageSeverityFlagBitsEXT>( messageSeverity ), static_cast<VkDebugUtilsMessageTypeFlagsEXT>( messageTypes ), reinterpret_cast<const VkDebugUtilsMessengerCallbackDataEXT*>( &callbackData ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,180 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::getCheckpointDataNV( uint32_t* pCheckpointDataCount, VULKAN_HPP_NAMESPACE::CheckpointDataNV* pCheckpointData, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkGetQueueCheckpointDataNV( m_queue, pCheckpointDataCount, reinterpret_cast<VkCheckpointDataNV*>( pCheckpointData ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE std::vector<CheckpointDataNV,Allocator> Queue::getCheckpointDataNV(Dispatch const &d ) const
|
||||
{
|
||||
std::vector<CheckpointDataNV,Allocator> checkpointData;
|
||||
uint32_t checkpointDataCount;
|
||||
d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, nullptr );
|
||||
checkpointData.resize( checkpointDataCount );
|
||||
d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, reinterpret_cast<VkCheckpointDataNV*>( checkpointData.data() ) );
|
||||
return checkpointData;
|
||||
}
|
||||
template<typename Allocator, typename Dispatch>
|
||||
VULKAN_HPP_INLINE std::vector<CheckpointDataNV,Allocator> Queue::getCheckpointDataNV(Allocator const& vectorAllocator, Dispatch const &d ) const
|
||||
{
|
||||
std::vector<CheckpointDataNV,Allocator> checkpointData( vectorAllocator );
|
||||
uint32_t checkpointDataCount;
|
||||
d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, nullptr );
|
||||
checkpointData.resize( checkpointDataCount );
|
||||
d.vkGetQueueCheckpointDataNV( m_queue, &checkpointDataCount, reinterpret_cast<VkCheckpointDataNV*>( checkpointData.data() ) );
|
||||
return checkpointData;
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::beginDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT* pLabelInfo, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueBeginDebugUtilsLabelEXT( m_queue, reinterpret_cast<const VkDebugUtilsLabelEXT*>( pLabelInfo ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::beginDebugUtilsLabelEXT( const DebugUtilsLabelEXT & labelInfo, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueBeginDebugUtilsLabelEXT( m_queue, reinterpret_cast<const VkDebugUtilsLabelEXT*>( &labelInfo ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::bindSparse( uint32_t bindInfoCount, const VULKAN_HPP_NAMESPACE::BindSparseInfo* pBindInfo, VULKAN_HPP_NAMESPACE::Fence fence, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkQueueBindSparse( m_queue, bindInfoCount, reinterpret_cast<const VkBindSparseInfo*>( pBindInfo ), static_cast<VkFence>( fence ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<void>::type Queue::bindSparse( ArrayProxy<const VULKAN_HPP_NAMESPACE::BindSparseInfo> bindInfo, VULKAN_HPP_NAMESPACE::Fence fence, Dispatch const &d ) const
|
||||
{
|
||||
Result result = static_cast<Result>( d.vkQueueBindSparse( m_queue, bindInfo.size() , reinterpret_cast<const VkBindSparseInfo*>( bindInfo.data() ), static_cast<VkFence>( fence ) ) );
|
||||
return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING"::Queue::bindSparse" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::endDebugUtilsLabelEXT(Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueEndDebugUtilsLabelEXT( m_queue );
|
||||
}
|
||||
#else
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::endDebugUtilsLabelEXT(Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueEndDebugUtilsLabelEXT( m_queue );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::insertDebugUtilsLabelEXT( const VULKAN_HPP_NAMESPACE::DebugUtilsLabelEXT* pLabelInfo, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueInsertDebugUtilsLabelEXT( m_queue, reinterpret_cast<const VkDebugUtilsLabelEXT*>( pLabelInfo ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE void Queue::insertDebugUtilsLabelEXT( const DebugUtilsLabelEXT & labelInfo, Dispatch const &d ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
d.vkQueueInsertDebugUtilsLabelEXT( m_queue, reinterpret_cast<const VkDebugUtilsLabelEXT*>( &labelInfo ) );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::presentKHR( const VULKAN_HPP_NAMESPACE::PresentInfoKHR* pPresentInfo, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkQueuePresentKHR( m_queue, reinterpret_cast<const VkPresentInfoKHR*>( pPresentInfo ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::presentKHR( const PresentInfoKHR & presentInfo, Dispatch const &d ) const
|
||||
{
|
||||
Result result = static_cast<Result>( d.vkQueuePresentKHR( m_queue, reinterpret_cast<const VkPresentInfoKHR*>( &presentInfo ) ) );
|
||||
return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING"::Queue::presentKHR", { Result::eSuccess, Result::eSuboptimalKHR } );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkQueueSetPerformanceConfigurationINTEL( m_queue, static_cast<VkPerformanceConfigurationINTEL>( configuration ) ) );
|
||||
}
|
||||
#else
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<void>::type Queue::setPerformanceConfigurationINTEL( VULKAN_HPP_NAMESPACE::PerformanceConfigurationINTEL configuration, Dispatch const &d ) const
|
||||
{
|
||||
Result result = static_cast<Result>( d.vkQueueSetPerformanceConfigurationINTEL( m_queue, static_cast<VkPerformanceConfigurationINTEL>( configuration ) ) );
|
||||
return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING"::Queue::setPerformanceConfigurationINTEL" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::submit( uint32_t submitCount, const VULKAN_HPP_NAMESPACE::SubmitInfo* pSubmits, VULKAN_HPP_NAMESPACE::Fence fence, Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkQueueSubmit( m_queue, submitCount, reinterpret_cast<const VkSubmitInfo*>( pSubmits ), static_cast<VkFence>( fence ) ) );
|
||||
}
|
||||
#ifndef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<void>::type Queue::submit( ArrayProxy<const VULKAN_HPP_NAMESPACE::SubmitInfo> submits, VULKAN_HPP_NAMESPACE::Fence fence, Dispatch const &d ) const
|
||||
{
|
||||
Result result = static_cast<Result>( d.vkQueueSubmit( m_queue, submits.size() , reinterpret_cast<const VkSubmitInfo*>( submits.data() ), static_cast<VkFence>( fence ) ) );
|
||||
return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING"::Queue::submit" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
|
||||
#ifdef VULKAN_HPP_DISABLE_ENHANCED_MODE
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE Result Queue::waitIdle(Dispatch const &d) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return static_cast<Result>( d.vkQueueWaitIdle( m_queue ) );
|
||||
}
|
||||
#else
|
||||
template<typename Dispatch>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<void>::type Queue::waitIdle(Dispatch const &d ) const
|
||||
{
|
||||
Result result = static_cast<Result>( d.vkQueueWaitIdle( m_queue ) );
|
||||
return createResultValue( result, VULKAN_HPP_NAMESPACE_STRING"::Queue::waitIdle" );
|
||||
}
|
||||
#endif /*VULKAN_HPP_DISABLE_ENHANCED_MODE*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,40 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../structs.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,74 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "cmds/Vk.hpp"
|
||||
#include "cmds/VkAccelerationStructureNV.hpp"
|
||||
#include "cmds/VkDebugUtilsMessengerEXT.hpp"
|
||||
#include "cmds/VkBuffer.hpp"
|
||||
#include "cmds/VkSwapchainKHR.hpp"
|
||||
#include "cmds/VkQueue.hpp"
|
||||
#include "cmds/VkInstance.hpp"
|
||||
#include "cmds/VkBufferView.hpp"
|
||||
#include "cmds/VkCommandPool.hpp"
|
||||
#include "cmds/VkCommandBuffer.hpp"
|
||||
#include "cmds/VkShaderModule.hpp"
|
||||
#include "cmds/VkDebugReportCallbackEXT.hpp"
|
||||
#include "cmds/VkDescriptorPool.hpp"
|
||||
#include "cmds/VkDescriptorSet.hpp"
|
||||
#include "cmds/VkDescriptorSetLayout.hpp"
|
||||
#include "cmds/VkDescriptorUpdateTemplate.hpp"
|
||||
#include "cmds/VkSemaphore.hpp"
|
||||
#include "cmds/VkDevice.hpp"
|
||||
#include "cmds/VkRenderPass.hpp"
|
||||
#include "cmds/VkDeviceMemory.hpp"
|
||||
#include "cmds/VkDisplayKHR.hpp"
|
||||
#include "cmds/VkPerformanceConfigurationINTEL.hpp"
|
||||
#include "cmds/VkEvent.hpp"
|
||||
#include "cmds/VkDisplayModeKHR.hpp"
|
||||
#include "cmds/VkFence.hpp"
|
||||
#include "cmds/VkFramebuffer.hpp"
|
||||
#include "cmds/VkImage.hpp"
|
||||
#include "cmds/VkImageView.hpp"
|
||||
#include "cmds/VkIndirectCommandsLayoutNVX.hpp"
|
||||
#include "cmds/VkObjectTableNVX.hpp"
|
||||
#include "cmds/VkPhysicalDevice.hpp"
|
||||
#include "cmds/VkPipeline.hpp"
|
||||
#include "cmds/VkPipelineCache.hpp"
|
||||
#include "cmds/VkPipelineLayout.hpp"
|
||||
#include "cmds/VkQueryPool.hpp"
|
||||
#include "cmds/VkSampler.hpp"
|
||||
#include "cmds/VkSamplerYcbcrConversion.hpp"
|
||||
#include "cmds/VkSurfaceKHR.hpp"
|
||||
#include "cmds/VkValidationCacheEXT.hpp"
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,497 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "bitmasks.hpp"
|
||||
|
||||
#ifndef VULKAN_HPP_NO_EXCEPTIONS
|
||||
namespace std
|
||||
{
|
||||
template <>
|
||||
struct is_error_code_enum<VULKAN_HPP_NAMESPACE::Result> : public true_type
|
||||
{};
|
||||
}
|
||||
#endif
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
#ifndef VULKAN_HPP_NO_EXCEPTIONS
|
||||
class ErrorCategoryImpl : public std::error_category
|
||||
{
|
||||
public:
|
||||
virtual const char* name() const VULKAN_HPP_NOEXCEPT override { return VULKAN_HPP_NAMESPACE_STRING"::Result"; }
|
||||
virtual std::string message(int ev) const override { return to_string(static_cast<Result>(ev)); }
|
||||
};
|
||||
|
||||
class Error
|
||||
{
|
||||
public:
|
||||
Error() VULKAN_HPP_NOEXCEPT = default;
|
||||
Error(const Error&) VULKAN_HPP_NOEXCEPT = default;
|
||||
virtual ~Error() VULKAN_HPP_NOEXCEPT = default;
|
||||
|
||||
virtual const char* what() const VULKAN_HPP_NOEXCEPT = 0;
|
||||
};
|
||||
|
||||
class LogicError : public Error, public std::logic_error
|
||||
{
|
||||
public:
|
||||
explicit LogicError( const std::string& what )
|
||||
: Error(), std::logic_error(what) {}
|
||||
explicit LogicError( char const * what )
|
||||
: Error(), std::logic_error(what) {}
|
||||
|
||||
virtual const char* what() const VULKAN_HPP_NOEXCEPT { return std::logic_error::what(); }
|
||||
};
|
||||
|
||||
class SystemError : public Error, public std::system_error
|
||||
{
|
||||
public:
|
||||
SystemError( std::error_code ec )
|
||||
: Error(), std::system_error(ec) {}
|
||||
SystemError( std::error_code ec, std::string const& what )
|
||||
: Error(), std::system_error(ec, what) {}
|
||||
SystemError( std::error_code ec, char const * what )
|
||||
: Error(), std::system_error(ec, what) {}
|
||||
SystemError( int ev, std::error_category const& ecat )
|
||||
: Error(), std::system_error(ev, ecat) {}
|
||||
SystemError( int ev, std::error_category const& ecat, std::string const& what)
|
||||
: Error(), std::system_error(ev, ecat, what) {}
|
||||
SystemError( int ev, std::error_category const& ecat, char const * what)
|
||||
: Error(), std::system_error(ev, ecat, what) {}
|
||||
|
||||
virtual const char* what() const VULKAN_HPP_NOEXCEPT { return std::system_error::what(); }
|
||||
};
|
||||
|
||||
VULKAN_HPP_INLINE const std::error_category& errorCategory() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
static ErrorCategoryImpl instance;
|
||||
return instance;
|
||||
}
|
||||
|
||||
VULKAN_HPP_INLINE std::error_code make_error_code(Result e) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return std::error_code(static_cast<int>(e), errorCategory());
|
||||
}
|
||||
|
||||
VULKAN_HPP_INLINE std::error_condition make_error_condition(Result e) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return std::error_condition(static_cast<int>(e), errorCategory());
|
||||
}
|
||||
|
||||
class OutOfHostMemoryError : public SystemError
|
||||
{
|
||||
public:
|
||||
OutOfHostMemoryError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) {}
|
||||
OutOfHostMemoryError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfHostMemory ), message ) {}
|
||||
};
|
||||
|
||||
class OutOfDeviceMemoryError : public SystemError
|
||||
{
|
||||
public:
|
||||
OutOfDeviceMemoryError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfDeviceMemory ), message ) {}
|
||||
OutOfDeviceMemoryError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfDeviceMemory ), message ) {}
|
||||
};
|
||||
|
||||
class InitializationFailedError : public SystemError
|
||||
{
|
||||
public:
|
||||
InitializationFailedError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorInitializationFailed ), message ) {}
|
||||
InitializationFailedError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorInitializationFailed ), message ) {}
|
||||
};
|
||||
|
||||
class DeviceLostError : public SystemError
|
||||
{
|
||||
public:
|
||||
DeviceLostError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorDeviceLost ), message ) {}
|
||||
DeviceLostError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorDeviceLost ), message ) {}
|
||||
};
|
||||
|
||||
class MemoryMapFailedError : public SystemError
|
||||
{
|
||||
public:
|
||||
MemoryMapFailedError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorMemoryMapFailed ), message ) {}
|
||||
MemoryMapFailedError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorMemoryMapFailed ), message ) {}
|
||||
};
|
||||
|
||||
class LayerNotPresentError : public SystemError
|
||||
{
|
||||
public:
|
||||
LayerNotPresentError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorLayerNotPresent ), message ) {}
|
||||
LayerNotPresentError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorLayerNotPresent ), message ) {}
|
||||
};
|
||||
|
||||
class ExtensionNotPresentError : public SystemError
|
||||
{
|
||||
public:
|
||||
ExtensionNotPresentError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorExtensionNotPresent ), message ) {}
|
||||
ExtensionNotPresentError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorExtensionNotPresent ), message ) {}
|
||||
};
|
||||
|
||||
class FeatureNotPresentError : public SystemError
|
||||
{
|
||||
public:
|
||||
FeatureNotPresentError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorFeatureNotPresent ), message ) {}
|
||||
FeatureNotPresentError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorFeatureNotPresent ), message ) {}
|
||||
};
|
||||
|
||||
class IncompatibleDriverError : public SystemError
|
||||
{
|
||||
public:
|
||||
IncompatibleDriverError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorIncompatibleDriver ), message ) {}
|
||||
IncompatibleDriverError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorIncompatibleDriver ), message ) {}
|
||||
};
|
||||
|
||||
class TooManyObjectsError : public SystemError
|
||||
{
|
||||
public:
|
||||
TooManyObjectsError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorTooManyObjects ), message ) {}
|
||||
TooManyObjectsError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorTooManyObjects ), message ) {}
|
||||
};
|
||||
|
||||
class FormatNotSupportedError : public SystemError
|
||||
{
|
||||
public:
|
||||
FormatNotSupportedError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorFormatNotSupported ), message ) {}
|
||||
FormatNotSupportedError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorFormatNotSupported ), message ) {}
|
||||
};
|
||||
|
||||
class FragmentedPoolError : public SystemError
|
||||
{
|
||||
public:
|
||||
FragmentedPoolError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorFragmentedPool ), message ) {}
|
||||
FragmentedPoolError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorFragmentedPool ), message ) {}
|
||||
};
|
||||
|
||||
class OutOfPoolMemoryError : public SystemError
|
||||
{
|
||||
public:
|
||||
OutOfPoolMemoryError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfPoolMemory ), message ) {}
|
||||
OutOfPoolMemoryError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfPoolMemory ), message ) {}
|
||||
};
|
||||
|
||||
class InvalidExternalHandleError : public SystemError
|
||||
{
|
||||
public:
|
||||
InvalidExternalHandleError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidExternalHandle ), message ) {}
|
||||
InvalidExternalHandleError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidExternalHandle ), message ) {}
|
||||
};
|
||||
|
||||
class SurfaceLostKHRError : public SystemError
|
||||
{
|
||||
public:
|
||||
SurfaceLostKHRError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorSurfaceLostKHR ), message ) {}
|
||||
SurfaceLostKHRError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorSurfaceLostKHR ), message ) {}
|
||||
};
|
||||
|
||||
class NativeWindowInUseKHRError : public SystemError
|
||||
{
|
||||
public:
|
||||
NativeWindowInUseKHRError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorNativeWindowInUseKHR ), message ) {}
|
||||
NativeWindowInUseKHRError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorNativeWindowInUseKHR ), message ) {}
|
||||
};
|
||||
|
||||
class OutOfDateKHRError : public SystemError
|
||||
{
|
||||
public:
|
||||
OutOfDateKHRError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfDateKHR ), message ) {}
|
||||
OutOfDateKHRError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorOutOfDateKHR ), message ) {}
|
||||
};
|
||||
|
||||
class IncompatibleDisplayKHRError : public SystemError
|
||||
{
|
||||
public:
|
||||
IncompatibleDisplayKHRError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorIncompatibleDisplayKHR ), message ) {}
|
||||
IncompatibleDisplayKHRError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorIncompatibleDisplayKHR ), message ) {}
|
||||
};
|
||||
|
||||
class ValidationFailedEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
ValidationFailedEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorValidationFailedEXT ), message ) {}
|
||||
ValidationFailedEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorValidationFailedEXT ), message ) {}
|
||||
};
|
||||
|
||||
class InvalidShaderNVError : public SystemError
|
||||
{
|
||||
public:
|
||||
InvalidShaderNVError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidShaderNV ), message ) {}
|
||||
InvalidShaderNVError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidShaderNV ), message ) {}
|
||||
};
|
||||
|
||||
class InvalidDrmFormatModifierPlaneLayoutEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
InvalidDrmFormatModifierPlaneLayoutEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT ), message ) {}
|
||||
InvalidDrmFormatModifierPlaneLayoutEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT ), message ) {}
|
||||
};
|
||||
|
||||
class FragmentationEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
FragmentationEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorFragmentationEXT ), message ) {}
|
||||
FragmentationEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorFragmentationEXT ), message ) {}
|
||||
};
|
||||
|
||||
class NotPermittedEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
NotPermittedEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorNotPermittedEXT ), message ) {}
|
||||
NotPermittedEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorNotPermittedEXT ), message ) {}
|
||||
};
|
||||
|
||||
class InvalidDeviceAddressEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
InvalidDeviceAddressEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidDeviceAddressEXT ), message ) {}
|
||||
InvalidDeviceAddressEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorInvalidDeviceAddressEXT ), message ) {}
|
||||
};
|
||||
|
||||
class FullScreenExclusiveModeLostEXTError : public SystemError
|
||||
{
|
||||
public:
|
||||
FullScreenExclusiveModeLostEXTError( std::string const& message )
|
||||
: SystemError( make_error_code( Result::eErrorFullScreenExclusiveModeLostEXT ), message ) {}
|
||||
FullScreenExclusiveModeLostEXTError( char const * message )
|
||||
: SystemError( make_error_code( Result::eErrorFullScreenExclusiveModeLostEXT ), message ) {}
|
||||
};
|
||||
|
||||
[[noreturn]] static void throwResultException( Result result, char const * message )
|
||||
{
|
||||
switch ( result )
|
||||
{
|
||||
case Result::eErrorOutOfHostMemory: throw OutOfHostMemoryError( message );
|
||||
case Result::eErrorOutOfDeviceMemory: throw OutOfDeviceMemoryError( message );
|
||||
case Result::eErrorInitializationFailed: throw InitializationFailedError( message );
|
||||
case Result::eErrorDeviceLost: throw DeviceLostError( message );
|
||||
case Result::eErrorMemoryMapFailed: throw MemoryMapFailedError( message );
|
||||
case Result::eErrorLayerNotPresent: throw LayerNotPresentError( message );
|
||||
case Result::eErrorExtensionNotPresent: throw ExtensionNotPresentError( message );
|
||||
case Result::eErrorFeatureNotPresent: throw FeatureNotPresentError( message );
|
||||
case Result::eErrorIncompatibleDriver: throw IncompatibleDriverError( message );
|
||||
case Result::eErrorTooManyObjects: throw TooManyObjectsError( message );
|
||||
case Result::eErrorFormatNotSupported: throw FormatNotSupportedError( message );
|
||||
case Result::eErrorFragmentedPool: throw FragmentedPoolError( message );
|
||||
case Result::eErrorOutOfPoolMemory: throw OutOfPoolMemoryError( message );
|
||||
case Result::eErrorInvalidExternalHandle: throw InvalidExternalHandleError( message );
|
||||
case Result::eErrorSurfaceLostKHR: throw SurfaceLostKHRError( message );
|
||||
case Result::eErrorNativeWindowInUseKHR: throw NativeWindowInUseKHRError( message );
|
||||
case Result::eErrorOutOfDateKHR: throw OutOfDateKHRError( message );
|
||||
case Result::eErrorIncompatibleDisplayKHR: throw IncompatibleDisplayKHRError( message );
|
||||
case Result::eErrorValidationFailedEXT: throw ValidationFailedEXTError( message );
|
||||
case Result::eErrorInvalidShaderNV: throw InvalidShaderNVError( message );
|
||||
case Result::eErrorInvalidDrmFormatModifierPlaneLayoutEXT: throw InvalidDrmFormatModifierPlaneLayoutEXTError( message );
|
||||
case Result::eErrorFragmentationEXT: throw FragmentationEXTError( message );
|
||||
case Result::eErrorNotPermittedEXT: throw NotPermittedEXTError( message );
|
||||
case Result::eErrorInvalidDeviceAddressEXT: throw InvalidDeviceAddressEXTError( message );
|
||||
case Result::eErrorFullScreenExclusiveModeLostEXT: throw FullScreenExclusiveModeLostEXTError( message );
|
||||
default: throw SystemError( make_error_code( result ) );
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
template <typename T> void ignore(T const&) VULKAN_HPP_NOEXCEPT {}
|
||||
|
||||
template <typename T>
|
||||
struct ResultValue
|
||||
{
|
||||
#ifdef VULKAN_HPP_HAS_NOEXCEPT
|
||||
ResultValue( Result r, T & v ) VULKAN_HPP_NOEXCEPT(VULKAN_HPP_NOEXCEPT(T(v)))
|
||||
#else
|
||||
ResultValue( Result r, T & v )
|
||||
#endif
|
||||
: result( r )
|
||||
, value( v )
|
||||
{}
|
||||
|
||||
#ifdef VULKAN_HPP_HAS_NOEXCEPT
|
||||
ResultValue( Result r, T && v ) VULKAN_HPP_NOEXCEPT(VULKAN_HPP_NOEXCEPT(T(std::move(v))))
|
||||
#else
|
||||
ResultValue( Result r, T && v )
|
||||
#endif
|
||||
: result( r )
|
||||
, value( std::move( v ) )
|
||||
{}
|
||||
|
||||
Result result;
|
||||
T value;
|
||||
|
||||
operator std::tuple<Result&, T&>() VULKAN_HPP_NOEXCEPT { return std::tuple<Result&, T&>(result, value); }
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct ResultValueType
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
typedef ResultValue<T> type;
|
||||
#else
|
||||
typedef T type;
|
||||
#endif
|
||||
};
|
||||
|
||||
template <>
|
||||
struct ResultValueType<void>
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
typedef Result type;
|
||||
#else
|
||||
typedef void type;
|
||||
#endif
|
||||
};
|
||||
|
||||
VULKAN_HPP_INLINE ResultValueType<void>::type createResultValue( Result result, char const * message )
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
ignore(message);
|
||||
VULKAN_HPP_ASSERT( result == Result::eSuccess );
|
||||
return result;
|
||||
#else
|
||||
if ( result != Result::eSuccess )
|
||||
{
|
||||
throwResultException( result, message );
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<T>::type createResultValue( Result result, T & data, char const * message )
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
ignore(message);
|
||||
VULKAN_HPP_ASSERT( result == Result::eSuccess );
|
||||
return ResultValue<T>( result, std::move( data ) );
|
||||
#else
|
||||
if ( result != Result::eSuccess )
|
||||
{
|
||||
throwResultException( result, message );
|
||||
}
|
||||
return std::move( data );
|
||||
#endif
|
||||
}
|
||||
|
||||
VULKAN_HPP_INLINE Result createResultValue( Result result, char const * message, std::initializer_list<Result> successCodes )
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
ignore(message);
|
||||
VULKAN_HPP_ASSERT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() );
|
||||
#else
|
||||
if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() )
|
||||
{
|
||||
throwResultException( result, message );
|
||||
}
|
||||
#endif
|
||||
return result;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
VULKAN_HPP_INLINE ResultValue<T> createResultValue( Result result, T & data, char const * message, std::initializer_list<Result> successCodes )
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
ignore(message);
|
||||
VULKAN_HPP_ASSERT( std::find( successCodes.begin(), successCodes.end(), result ) != successCodes.end() );
|
||||
#else
|
||||
if ( std::find( successCodes.begin(), successCodes.end(), result ) == successCodes.end() )
|
||||
{
|
||||
throwResultException( result, message );
|
||||
}
|
||||
#endif
|
||||
return ResultValue<T>( result, data );
|
||||
}
|
||||
|
||||
#ifndef VULKAN_HPP_NO_SMART_HANDLE
|
||||
template <typename T, typename D>
|
||||
VULKAN_HPP_INLINE typename ResultValueType<UniqueHandle<T,D>>::type createResultValue( Result result, T & data, char const * message, typename UniqueHandleTraits<T,D>::deleter const& deleter )
|
||||
{
|
||||
#ifdef VULKAN_HPP_NO_EXCEPTIONS
|
||||
ignore(message);
|
||||
VULKAN_HPP_ASSERT( result == Result::eSuccess );
|
||||
return ResultValue<UniqueHandle<T,D>>( result, UniqueHandle<T,D>(data, deleter) );
|
||||
#else
|
||||
if ( result != Result::eSuccess )
|
||||
{
|
||||
throwResultException( result, message );
|
||||
}
|
||||
return UniqueHandle<T,D>(data, deleter);
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,655 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "exceptions.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct AccelerationStructureCreateInfoNV;
|
||||
struct AccelerationStructureInfoNV;
|
||||
struct AccelerationStructureMemoryRequirementsInfoNV;
|
||||
struct AcquireNextImageInfoKHR;
|
||||
struct AllocationCallbacks;
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferFormatPropertiesANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferPropertiesANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferUsageANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidSurfaceCreateInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
struct ApplicationInfo;
|
||||
struct AttachmentDescription;
|
||||
struct AttachmentDescription2KHR;
|
||||
struct AttachmentReference;
|
||||
struct AttachmentReference2KHR;
|
||||
struct AttachmentSampleLocationsEXT;
|
||||
struct BaseInStructure;
|
||||
struct BaseOutStructure;
|
||||
struct BindAccelerationStructureMemoryInfoNV;
|
||||
struct BindBufferMemoryDeviceGroupInfo;
|
||||
using BindBufferMemoryDeviceGroupInfoKHR = BindBufferMemoryDeviceGroupInfo;
|
||||
struct BindBufferMemoryInfo;
|
||||
using BindBufferMemoryInfoKHR = BindBufferMemoryInfo;
|
||||
struct BindImageMemoryDeviceGroupInfo;
|
||||
using BindImageMemoryDeviceGroupInfoKHR = BindImageMemoryDeviceGroupInfo;
|
||||
struct BindImageMemoryInfo;
|
||||
using BindImageMemoryInfoKHR = BindImageMemoryInfo;
|
||||
struct BindImageMemorySwapchainInfoKHR;
|
||||
struct BindImagePlaneMemoryInfo;
|
||||
using BindImagePlaneMemoryInfoKHR = BindImagePlaneMemoryInfo;
|
||||
struct BindSparseInfo;
|
||||
struct BufferCopy;
|
||||
struct BufferCreateInfo;
|
||||
struct BufferDeviceAddressCreateInfoEXT;
|
||||
struct BufferDeviceAddressInfoEXT;
|
||||
struct BufferImageCopy;
|
||||
struct BufferMemoryBarrier;
|
||||
struct BufferMemoryRequirementsInfo2;
|
||||
using BufferMemoryRequirementsInfo2KHR = BufferMemoryRequirementsInfo2;
|
||||
struct BufferViewCreateInfo;
|
||||
struct CalibratedTimestampInfoEXT;
|
||||
struct CheckpointDataNV;
|
||||
struct ClearAttachment;
|
||||
union ClearColorValue;
|
||||
struct ClearDepthStencilValue;
|
||||
struct ClearRect;
|
||||
union ClearValue;
|
||||
struct CmdProcessCommandsInfoNVX;
|
||||
struct CmdReserveSpaceForCommandsInfoNVX;
|
||||
struct CoarseSampleLocationNV;
|
||||
struct CoarseSampleOrderCustomNV;
|
||||
struct CommandBufferAllocateInfo;
|
||||
struct CommandBufferBeginInfo;
|
||||
struct CommandBufferInheritanceConditionalRenderingInfoEXT;
|
||||
struct CommandBufferInheritanceInfo;
|
||||
struct CommandPoolCreateInfo;
|
||||
struct ComponentMapping;
|
||||
struct ComputePipelineCreateInfo;
|
||||
struct ConditionalRenderingBeginInfoEXT;
|
||||
struct ConformanceVersionKHR;
|
||||
struct CooperativeMatrixPropertiesNV;
|
||||
struct CopyDescriptorSet;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct D3D12FenceSubmitInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct DebugMarkerMarkerInfoEXT;
|
||||
struct DebugMarkerObjectNameInfoEXT;
|
||||
struct DebugMarkerObjectTagInfoEXT;
|
||||
struct DebugReportCallbackCreateInfoEXT;
|
||||
struct DebugUtilsLabelEXT;
|
||||
struct DebugUtilsMessengerCallbackDataEXT;
|
||||
struct DebugUtilsMessengerCreateInfoEXT;
|
||||
struct DebugUtilsObjectNameInfoEXT;
|
||||
struct DebugUtilsObjectTagInfoEXT;
|
||||
struct DedicatedAllocationBufferCreateInfoNV;
|
||||
struct DedicatedAllocationImageCreateInfoNV;
|
||||
struct DedicatedAllocationMemoryAllocateInfoNV;
|
||||
struct DescriptorBufferInfo;
|
||||
struct DescriptorImageInfo;
|
||||
struct DescriptorPoolCreateInfo;
|
||||
struct DescriptorPoolInlineUniformBlockCreateInfoEXT;
|
||||
struct DescriptorPoolSize;
|
||||
struct DescriptorSetAllocateInfo;
|
||||
struct DescriptorSetLayoutBinding;
|
||||
struct DescriptorSetLayoutBindingFlagsCreateInfoEXT;
|
||||
struct DescriptorSetLayoutCreateInfo;
|
||||
struct DescriptorSetLayoutSupport;
|
||||
using DescriptorSetLayoutSupportKHR = DescriptorSetLayoutSupport;
|
||||
struct DescriptorSetVariableDescriptorCountAllocateInfoEXT;
|
||||
struct DescriptorSetVariableDescriptorCountLayoutSupportEXT;
|
||||
struct DescriptorUpdateTemplateCreateInfo;
|
||||
using DescriptorUpdateTemplateCreateInfoKHR = DescriptorUpdateTemplateCreateInfo;
|
||||
struct DescriptorUpdateTemplateEntry;
|
||||
using DescriptorUpdateTemplateEntryKHR = DescriptorUpdateTemplateEntry;
|
||||
struct DeviceCreateInfo;
|
||||
struct DeviceEventInfoEXT;
|
||||
struct DeviceGeneratedCommandsFeaturesNVX;
|
||||
struct DeviceGeneratedCommandsLimitsNVX;
|
||||
struct DeviceGroupBindSparseInfo;
|
||||
using DeviceGroupBindSparseInfoKHR = DeviceGroupBindSparseInfo;
|
||||
struct DeviceGroupCommandBufferBeginInfo;
|
||||
using DeviceGroupCommandBufferBeginInfoKHR = DeviceGroupCommandBufferBeginInfo;
|
||||
struct DeviceGroupDeviceCreateInfo;
|
||||
using DeviceGroupDeviceCreateInfoKHR = DeviceGroupDeviceCreateInfo;
|
||||
struct DeviceGroupPresentCapabilitiesKHR;
|
||||
struct DeviceGroupPresentInfoKHR;
|
||||
struct DeviceGroupRenderPassBeginInfo;
|
||||
using DeviceGroupRenderPassBeginInfoKHR = DeviceGroupRenderPassBeginInfo;
|
||||
struct DeviceGroupSubmitInfo;
|
||||
using DeviceGroupSubmitInfoKHR = DeviceGroupSubmitInfo;
|
||||
struct DeviceGroupSwapchainCreateInfoKHR;
|
||||
struct DeviceMemoryOverallocationCreateInfoAMD;
|
||||
struct DeviceQueueCreateInfo;
|
||||
struct DeviceQueueGlobalPriorityCreateInfoEXT;
|
||||
struct DeviceQueueInfo2;
|
||||
struct DispatchIndirectCommand;
|
||||
struct DisplayEventInfoEXT;
|
||||
struct DisplayModeCreateInfoKHR;
|
||||
struct DisplayModeParametersKHR;
|
||||
struct DisplayModeProperties2KHR;
|
||||
struct DisplayModePropertiesKHR;
|
||||
struct DisplayNativeHdrSurfaceCapabilitiesAMD;
|
||||
struct DisplayPlaneCapabilities2KHR;
|
||||
struct DisplayPlaneCapabilitiesKHR;
|
||||
struct DisplayPlaneInfo2KHR;
|
||||
struct DisplayPlaneProperties2KHR;
|
||||
struct DisplayPlanePropertiesKHR;
|
||||
struct DisplayPowerInfoEXT;
|
||||
struct DisplayPresentInfoKHR;
|
||||
struct DisplayProperties2KHR;
|
||||
struct DisplayPropertiesKHR;
|
||||
struct DisplaySurfaceCreateInfoKHR;
|
||||
struct DrawIndexedIndirectCommand;
|
||||
struct DrawIndirectCommand;
|
||||
struct DrawMeshTasksIndirectCommandNV;
|
||||
struct DrmFormatModifierPropertiesEXT;
|
||||
struct DrmFormatModifierPropertiesListEXT;
|
||||
struct EventCreateInfo;
|
||||
struct ExportFenceCreateInfo;
|
||||
using ExportFenceCreateInfoKHR = ExportFenceCreateInfo;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportFenceWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ExportMemoryAllocateInfo;
|
||||
using ExportMemoryAllocateInfoKHR = ExportMemoryAllocateInfo;
|
||||
struct ExportMemoryAllocateInfoNV;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportMemoryWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportMemoryWin32HandleInfoNV;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ExportSemaphoreCreateInfo;
|
||||
using ExportSemaphoreCreateInfoKHR = ExportSemaphoreCreateInfo;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportSemaphoreWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ExtensionProperties;
|
||||
struct Extent2D;
|
||||
struct Extent3D;
|
||||
struct ExternalBufferProperties;
|
||||
using ExternalBufferPropertiesKHR = ExternalBufferProperties;
|
||||
struct ExternalFenceProperties;
|
||||
using ExternalFencePropertiesKHR = ExternalFenceProperties;
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct ExternalFormatANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
struct ExternalImageFormatProperties;
|
||||
using ExternalImageFormatPropertiesKHR = ExternalImageFormatProperties;
|
||||
struct ExternalImageFormatPropertiesNV;
|
||||
struct ExternalMemoryBufferCreateInfo;
|
||||
using ExternalMemoryBufferCreateInfoKHR = ExternalMemoryBufferCreateInfo;
|
||||
struct ExternalMemoryImageCreateInfo;
|
||||
using ExternalMemoryImageCreateInfoKHR = ExternalMemoryImageCreateInfo;
|
||||
struct ExternalMemoryImageCreateInfoNV;
|
||||
struct ExternalMemoryProperties;
|
||||
using ExternalMemoryPropertiesKHR = ExternalMemoryProperties;
|
||||
struct ExternalSemaphoreProperties;
|
||||
using ExternalSemaphorePropertiesKHR = ExternalSemaphoreProperties;
|
||||
struct FenceCreateInfo;
|
||||
struct FenceGetFdInfoKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct FenceGetWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct FilterCubicImageViewImageFormatPropertiesEXT;
|
||||
struct FormatProperties;
|
||||
struct FormatProperties2;
|
||||
using FormatProperties2KHR = FormatProperties2;
|
||||
struct FramebufferAttachmentImageInfoKHR;
|
||||
struct FramebufferAttachmentsCreateInfoKHR;
|
||||
struct FramebufferCreateInfo;
|
||||
struct FramebufferMixedSamplesCombinationNV;
|
||||
struct GeometryAABBNV;
|
||||
struct GeometryDataNV;
|
||||
struct GeometryNV;
|
||||
struct GeometryTrianglesNV;
|
||||
struct GraphicsPipelineCreateInfo;
|
||||
struct HdrMetadataEXT;
|
||||
struct HeadlessSurfaceCreateInfoEXT;
|
||||
#ifdef VK_USE_PLATFORM_IOS_MVK
|
||||
struct IOSSurfaceCreateInfoMVK;
|
||||
#endif /*VK_USE_PLATFORM_IOS_MVK*/
|
||||
struct ImageBlit;
|
||||
struct ImageCopy;
|
||||
struct ImageCreateInfo;
|
||||
struct ImageDrmFormatModifierExplicitCreateInfoEXT;
|
||||
struct ImageDrmFormatModifierListCreateInfoEXT;
|
||||
struct ImageDrmFormatModifierPropertiesEXT;
|
||||
struct ImageFormatListCreateInfoKHR;
|
||||
struct ImageFormatProperties;
|
||||
struct ImageFormatProperties2;
|
||||
using ImageFormatProperties2KHR = ImageFormatProperties2;
|
||||
struct ImageMemoryBarrier;
|
||||
struct ImageMemoryRequirementsInfo2;
|
||||
using ImageMemoryRequirementsInfo2KHR = ImageMemoryRequirementsInfo2;
|
||||
#ifdef VK_USE_PLATFORM_FUCHSIA
|
||||
struct ImagePipeSurfaceCreateInfoFUCHSIA;
|
||||
#endif /*VK_USE_PLATFORM_FUCHSIA*/
|
||||
struct ImagePlaneMemoryRequirementsInfo;
|
||||
using ImagePlaneMemoryRequirementsInfoKHR = ImagePlaneMemoryRequirementsInfo;
|
||||
struct ImageResolve;
|
||||
struct ImageSparseMemoryRequirementsInfo2;
|
||||
using ImageSparseMemoryRequirementsInfo2KHR = ImageSparseMemoryRequirementsInfo2;
|
||||
struct ImageStencilUsageCreateInfoEXT;
|
||||
struct ImageSubresource;
|
||||
struct ImageSubresourceLayers;
|
||||
struct ImageSubresourceRange;
|
||||
struct ImageSwapchainCreateInfoKHR;
|
||||
struct ImageViewASTCDecodeModeEXT;
|
||||
struct ImageViewCreateInfo;
|
||||
struct ImageViewHandleInfoNVX;
|
||||
struct ImageViewUsageCreateInfo;
|
||||
using ImageViewUsageCreateInfoKHR = ImageViewUsageCreateInfo;
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct ImportAndroidHardwareBufferInfoANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
struct ImportFenceFdInfoKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportFenceWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ImportMemoryFdInfoKHR;
|
||||
struct ImportMemoryHostPointerInfoEXT;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportMemoryWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportMemoryWin32HandleInfoNV;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ImportSemaphoreFdInfoKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportSemaphoreWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct IndirectCommandsLayoutCreateInfoNVX;
|
||||
struct IndirectCommandsLayoutTokenNVX;
|
||||
struct IndirectCommandsTokenNVX;
|
||||
struct InitializePerformanceApiInfoINTEL;
|
||||
struct InputAttachmentAspectReference;
|
||||
using InputAttachmentAspectReferenceKHR = InputAttachmentAspectReference;
|
||||
struct InstanceCreateInfo;
|
||||
struct LayerProperties;
|
||||
#ifdef VK_USE_PLATFORM_MACOS_MVK
|
||||
struct MacOSSurfaceCreateInfoMVK;
|
||||
#endif /*VK_USE_PLATFORM_MACOS_MVK*/
|
||||
struct MappedMemoryRange;
|
||||
struct MemoryAllocateFlagsInfo;
|
||||
using MemoryAllocateFlagsInfoKHR = MemoryAllocateFlagsInfo;
|
||||
struct MemoryAllocateInfo;
|
||||
struct MemoryBarrier;
|
||||
struct MemoryDedicatedAllocateInfo;
|
||||
using MemoryDedicatedAllocateInfoKHR = MemoryDedicatedAllocateInfo;
|
||||
struct MemoryDedicatedRequirements;
|
||||
using MemoryDedicatedRequirementsKHR = MemoryDedicatedRequirements;
|
||||
struct MemoryFdPropertiesKHR;
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct MemoryGetAndroidHardwareBufferInfoANDROID;
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
struct MemoryGetFdInfoKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct MemoryGetWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct MemoryHeap;
|
||||
struct MemoryHostPointerPropertiesEXT;
|
||||
struct MemoryPriorityAllocateInfoEXT;
|
||||
struct MemoryRequirements;
|
||||
struct MemoryRequirements2;
|
||||
using MemoryRequirements2KHR = MemoryRequirements2;
|
||||
struct MemoryType;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct MemoryWin32HandlePropertiesKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_METAL_EXT
|
||||
struct MetalSurfaceCreateInfoEXT;
|
||||
#endif /*VK_USE_PLATFORM_METAL_EXT*/
|
||||
struct MultisamplePropertiesEXT;
|
||||
struct ObjectTableCreateInfoNVX;
|
||||
struct ObjectTableDescriptorSetEntryNVX;
|
||||
struct ObjectTableEntryNVX;
|
||||
struct ObjectTableIndexBufferEntryNVX;
|
||||
struct ObjectTablePipelineEntryNVX;
|
||||
struct ObjectTablePushConstantEntryNVX;
|
||||
struct ObjectTableVertexBufferEntryNVX;
|
||||
struct Offset2D;
|
||||
struct Offset3D;
|
||||
struct PastPresentationTimingGOOGLE;
|
||||
struct PerformanceConfigurationAcquireInfoINTEL;
|
||||
struct PerformanceMarkerInfoINTEL;
|
||||
struct PerformanceOverrideInfoINTEL;
|
||||
struct PerformanceStreamMarkerInfoINTEL;
|
||||
union PerformanceValueDataINTEL;
|
||||
struct PerformanceValueINTEL;
|
||||
struct PhysicalDevice16BitStorageFeatures;
|
||||
using PhysicalDevice16BitStorageFeaturesKHR = PhysicalDevice16BitStorageFeatures;
|
||||
struct PhysicalDevice8BitStorageFeaturesKHR;
|
||||
struct PhysicalDeviceASTCDecodeFeaturesEXT;
|
||||
struct PhysicalDeviceBlendOperationAdvancedFeaturesEXT;
|
||||
struct PhysicalDeviceBlendOperationAdvancedPropertiesEXT;
|
||||
struct PhysicalDeviceBufferDeviceAddressFeaturesEXT;
|
||||
using PhysicalDeviceBufferAddressFeaturesEXT = PhysicalDeviceBufferDeviceAddressFeaturesEXT;
|
||||
struct PhysicalDeviceCoherentMemoryFeaturesAMD;
|
||||
struct PhysicalDeviceComputeShaderDerivativesFeaturesNV;
|
||||
struct PhysicalDeviceConditionalRenderingFeaturesEXT;
|
||||
struct PhysicalDeviceConservativeRasterizationPropertiesEXT;
|
||||
struct PhysicalDeviceCooperativeMatrixFeaturesNV;
|
||||
struct PhysicalDeviceCooperativeMatrixPropertiesNV;
|
||||
struct PhysicalDeviceCornerSampledImageFeaturesNV;
|
||||
struct PhysicalDeviceCoverageReductionModeFeaturesNV;
|
||||
struct PhysicalDeviceDedicatedAllocationImageAliasingFeaturesNV;
|
||||
struct PhysicalDeviceDepthClipEnableFeaturesEXT;
|
||||
struct PhysicalDeviceDepthStencilResolvePropertiesKHR;
|
||||
struct PhysicalDeviceDescriptorIndexingFeaturesEXT;
|
||||
struct PhysicalDeviceDescriptorIndexingPropertiesEXT;
|
||||
struct PhysicalDeviceDiscardRectanglePropertiesEXT;
|
||||
struct PhysicalDeviceDriverPropertiesKHR;
|
||||
struct PhysicalDeviceExclusiveScissorFeaturesNV;
|
||||
struct PhysicalDeviceExternalBufferInfo;
|
||||
using PhysicalDeviceExternalBufferInfoKHR = PhysicalDeviceExternalBufferInfo;
|
||||
struct PhysicalDeviceExternalFenceInfo;
|
||||
using PhysicalDeviceExternalFenceInfoKHR = PhysicalDeviceExternalFenceInfo;
|
||||
struct PhysicalDeviceExternalImageFormatInfo;
|
||||
using PhysicalDeviceExternalImageFormatInfoKHR = PhysicalDeviceExternalImageFormatInfo;
|
||||
struct PhysicalDeviceExternalMemoryHostPropertiesEXT;
|
||||
struct PhysicalDeviceExternalSemaphoreInfo;
|
||||
using PhysicalDeviceExternalSemaphoreInfoKHR = PhysicalDeviceExternalSemaphoreInfo;
|
||||
struct PhysicalDeviceFeatures;
|
||||
struct PhysicalDeviceFeatures2;
|
||||
using PhysicalDeviceFeatures2KHR = PhysicalDeviceFeatures2;
|
||||
struct PhysicalDeviceFloatControlsPropertiesKHR;
|
||||
struct PhysicalDeviceFragmentDensityMapFeaturesEXT;
|
||||
struct PhysicalDeviceFragmentDensityMapPropertiesEXT;
|
||||
struct PhysicalDeviceFragmentShaderBarycentricFeaturesNV;
|
||||
struct PhysicalDeviceFragmentShaderInterlockFeaturesEXT;
|
||||
struct PhysicalDeviceGroupProperties;
|
||||
using PhysicalDeviceGroupPropertiesKHR = PhysicalDeviceGroupProperties;
|
||||
struct PhysicalDeviceHostQueryResetFeaturesEXT;
|
||||
struct PhysicalDeviceIDProperties;
|
||||
using PhysicalDeviceIDPropertiesKHR = PhysicalDeviceIDProperties;
|
||||
struct PhysicalDeviceImageDrmFormatModifierInfoEXT;
|
||||
struct PhysicalDeviceImageFormatInfo2;
|
||||
using PhysicalDeviceImageFormatInfo2KHR = PhysicalDeviceImageFormatInfo2;
|
||||
struct PhysicalDeviceImageViewImageFormatInfoEXT;
|
||||
struct PhysicalDeviceImagelessFramebufferFeaturesKHR;
|
||||
struct PhysicalDeviceIndexTypeUint8FeaturesEXT;
|
||||
struct PhysicalDeviceInlineUniformBlockFeaturesEXT;
|
||||
struct PhysicalDeviceInlineUniformBlockPropertiesEXT;
|
||||
struct PhysicalDeviceLimits;
|
||||
struct PhysicalDeviceLineRasterizationFeaturesEXT;
|
||||
struct PhysicalDeviceLineRasterizationPropertiesEXT;
|
||||
struct PhysicalDeviceMaintenance3Properties;
|
||||
using PhysicalDeviceMaintenance3PropertiesKHR = PhysicalDeviceMaintenance3Properties;
|
||||
struct PhysicalDeviceMemoryBudgetPropertiesEXT;
|
||||
struct PhysicalDeviceMemoryPriorityFeaturesEXT;
|
||||
struct PhysicalDeviceMemoryProperties;
|
||||
struct PhysicalDeviceMemoryProperties2;
|
||||
using PhysicalDeviceMemoryProperties2KHR = PhysicalDeviceMemoryProperties2;
|
||||
struct PhysicalDeviceMeshShaderFeaturesNV;
|
||||
struct PhysicalDeviceMeshShaderPropertiesNV;
|
||||
struct PhysicalDeviceMultiviewFeatures;
|
||||
using PhysicalDeviceMultiviewFeaturesKHR = PhysicalDeviceMultiviewFeatures;
|
||||
struct PhysicalDeviceMultiviewPerViewAttributesPropertiesNVX;
|
||||
struct PhysicalDeviceMultiviewProperties;
|
||||
using PhysicalDeviceMultiviewPropertiesKHR = PhysicalDeviceMultiviewProperties;
|
||||
struct PhysicalDevicePCIBusInfoPropertiesEXT;
|
||||
struct PhysicalDevicePipelineExecutablePropertiesFeaturesKHR;
|
||||
struct PhysicalDevicePointClippingProperties;
|
||||
using PhysicalDevicePointClippingPropertiesKHR = PhysicalDevicePointClippingProperties;
|
||||
struct PhysicalDeviceProperties;
|
||||
struct PhysicalDeviceProperties2;
|
||||
using PhysicalDeviceProperties2KHR = PhysicalDeviceProperties2;
|
||||
struct PhysicalDeviceProtectedMemoryFeatures;
|
||||
struct PhysicalDeviceProtectedMemoryProperties;
|
||||
struct PhysicalDevicePushDescriptorPropertiesKHR;
|
||||
struct PhysicalDeviceRayTracingPropertiesNV;
|
||||
struct PhysicalDeviceRepresentativeFragmentTestFeaturesNV;
|
||||
struct PhysicalDeviceSampleLocationsPropertiesEXT;
|
||||
struct PhysicalDeviceSamplerFilterMinmaxPropertiesEXT;
|
||||
struct PhysicalDeviceSamplerYcbcrConversionFeatures;
|
||||
using PhysicalDeviceSamplerYcbcrConversionFeaturesKHR = PhysicalDeviceSamplerYcbcrConversionFeatures;
|
||||
struct PhysicalDeviceScalarBlockLayoutFeaturesEXT;
|
||||
struct PhysicalDeviceShaderAtomicInt64FeaturesKHR;
|
||||
struct PhysicalDeviceShaderCoreProperties2AMD;
|
||||
struct PhysicalDeviceShaderCorePropertiesAMD;
|
||||
struct PhysicalDeviceShaderDemoteToHelperInvocationFeaturesEXT;
|
||||
struct PhysicalDeviceShaderDrawParametersFeatures;
|
||||
using PhysicalDeviceShaderDrawParameterFeatures = PhysicalDeviceShaderDrawParametersFeatures;
|
||||
struct PhysicalDeviceShaderFloat16Int8FeaturesKHR;
|
||||
using PhysicalDeviceFloat16Int8FeaturesKHR = PhysicalDeviceShaderFloat16Int8FeaturesKHR;
|
||||
struct PhysicalDeviceShaderImageFootprintFeaturesNV;
|
||||
struct PhysicalDeviceShaderIntegerFunctions2FeaturesINTEL;
|
||||
struct PhysicalDeviceShaderSMBuiltinsFeaturesNV;
|
||||
struct PhysicalDeviceShaderSMBuiltinsPropertiesNV;
|
||||
struct PhysicalDeviceShadingRateImageFeaturesNV;
|
||||
struct PhysicalDeviceShadingRateImagePropertiesNV;
|
||||
struct PhysicalDeviceSparseImageFormatInfo2;
|
||||
using PhysicalDeviceSparseImageFormatInfo2KHR = PhysicalDeviceSparseImageFormatInfo2;
|
||||
struct PhysicalDeviceSparseProperties;
|
||||
struct PhysicalDeviceSubgroupProperties;
|
||||
struct PhysicalDeviceSubgroupSizeControlFeaturesEXT;
|
||||
struct PhysicalDeviceSubgroupSizeControlPropertiesEXT;
|
||||
struct PhysicalDeviceSurfaceInfo2KHR;
|
||||
struct PhysicalDeviceTexelBufferAlignmentFeaturesEXT;
|
||||
struct PhysicalDeviceTexelBufferAlignmentPropertiesEXT;
|
||||
struct PhysicalDeviceTextureCompressionASTCHDRFeaturesEXT;
|
||||
struct PhysicalDeviceTransformFeedbackFeaturesEXT;
|
||||
struct PhysicalDeviceTransformFeedbackPropertiesEXT;
|
||||
struct PhysicalDeviceUniformBufferStandardLayoutFeaturesKHR;
|
||||
struct PhysicalDeviceVariablePointersFeatures;
|
||||
using PhysicalDeviceVariablePointerFeatures = PhysicalDeviceVariablePointersFeatures;
|
||||
using PhysicalDeviceVariablePointerFeaturesKHR = PhysicalDeviceVariablePointersFeatures;
|
||||
using PhysicalDeviceVariablePointersFeaturesKHR = PhysicalDeviceVariablePointersFeatures;
|
||||
struct PhysicalDeviceVertexAttributeDivisorFeaturesEXT;
|
||||
struct PhysicalDeviceVertexAttributeDivisorPropertiesEXT;
|
||||
struct PhysicalDeviceVulkanMemoryModelFeaturesKHR;
|
||||
struct PhysicalDeviceYcbcrImageArraysFeaturesEXT;
|
||||
struct PipelineCacheCreateInfo;
|
||||
struct PipelineColorBlendAdvancedStateCreateInfoEXT;
|
||||
struct PipelineColorBlendAttachmentState;
|
||||
struct PipelineColorBlendStateCreateInfo;
|
||||
struct PipelineCompilerControlCreateInfoAMD;
|
||||
struct PipelineCoverageModulationStateCreateInfoNV;
|
||||
struct PipelineCoverageReductionStateCreateInfoNV;
|
||||
struct PipelineCoverageToColorStateCreateInfoNV;
|
||||
struct PipelineCreationFeedbackCreateInfoEXT;
|
||||
struct PipelineCreationFeedbackEXT;
|
||||
struct PipelineDepthStencilStateCreateInfo;
|
||||
struct PipelineDiscardRectangleStateCreateInfoEXT;
|
||||
struct PipelineDynamicStateCreateInfo;
|
||||
struct PipelineExecutableInfoKHR;
|
||||
struct PipelineExecutableInternalRepresentationKHR;
|
||||
struct PipelineExecutablePropertiesKHR;
|
||||
struct PipelineExecutableStatisticKHR;
|
||||
union PipelineExecutableStatisticValueKHR;
|
||||
struct PipelineInfoKHR;
|
||||
struct PipelineInputAssemblyStateCreateInfo;
|
||||
struct PipelineLayoutCreateInfo;
|
||||
struct PipelineMultisampleStateCreateInfo;
|
||||
struct PipelineRasterizationConservativeStateCreateInfoEXT;
|
||||
struct PipelineRasterizationDepthClipStateCreateInfoEXT;
|
||||
struct PipelineRasterizationLineStateCreateInfoEXT;
|
||||
struct PipelineRasterizationStateCreateInfo;
|
||||
struct PipelineRasterizationStateRasterizationOrderAMD;
|
||||
struct PipelineRasterizationStateStreamCreateInfoEXT;
|
||||
struct PipelineRepresentativeFragmentTestStateCreateInfoNV;
|
||||
struct PipelineSampleLocationsStateCreateInfoEXT;
|
||||
struct PipelineShaderStageCreateInfo;
|
||||
struct PipelineShaderStageRequiredSubgroupSizeCreateInfoEXT;
|
||||
struct PipelineTessellationDomainOriginStateCreateInfo;
|
||||
using PipelineTessellationDomainOriginStateCreateInfoKHR = PipelineTessellationDomainOriginStateCreateInfo;
|
||||
struct PipelineTessellationStateCreateInfo;
|
||||
struct PipelineVertexInputDivisorStateCreateInfoEXT;
|
||||
struct PipelineVertexInputStateCreateInfo;
|
||||
struct PipelineViewportCoarseSampleOrderStateCreateInfoNV;
|
||||
struct PipelineViewportExclusiveScissorStateCreateInfoNV;
|
||||
struct PipelineViewportShadingRateImageStateCreateInfoNV;
|
||||
struct PipelineViewportStateCreateInfo;
|
||||
struct PipelineViewportSwizzleStateCreateInfoNV;
|
||||
struct PipelineViewportWScalingStateCreateInfoNV;
|
||||
#ifdef VK_USE_PLATFORM_GGP
|
||||
struct PresentFrameTokenGGP;
|
||||
#endif /*VK_USE_PLATFORM_GGP*/
|
||||
struct PresentInfoKHR;
|
||||
struct PresentRegionKHR;
|
||||
struct PresentRegionsKHR;
|
||||
struct PresentTimeGOOGLE;
|
||||
struct PresentTimesInfoGOOGLE;
|
||||
struct ProtectedSubmitInfo;
|
||||
struct PushConstantRange;
|
||||
struct QueryPoolCreateInfo;
|
||||
struct QueryPoolCreateInfoINTEL;
|
||||
struct QueueFamilyCheckpointPropertiesNV;
|
||||
struct QueueFamilyProperties;
|
||||
struct QueueFamilyProperties2;
|
||||
using QueueFamilyProperties2KHR = QueueFamilyProperties2;
|
||||
struct RayTracingPipelineCreateInfoNV;
|
||||
struct RayTracingShaderGroupCreateInfoNV;
|
||||
struct Rect2D;
|
||||
struct RectLayerKHR;
|
||||
struct RefreshCycleDurationGOOGLE;
|
||||
struct RenderPassAttachmentBeginInfoKHR;
|
||||
struct RenderPassBeginInfo;
|
||||
struct RenderPassCreateInfo;
|
||||
struct RenderPassCreateInfo2KHR;
|
||||
struct RenderPassFragmentDensityMapCreateInfoEXT;
|
||||
struct RenderPassInputAttachmentAspectCreateInfo;
|
||||
using RenderPassInputAttachmentAspectCreateInfoKHR = RenderPassInputAttachmentAspectCreateInfo;
|
||||
struct RenderPassMultiviewCreateInfo;
|
||||
using RenderPassMultiviewCreateInfoKHR = RenderPassMultiviewCreateInfo;
|
||||
struct RenderPassSampleLocationsBeginInfoEXT;
|
||||
struct SampleLocationEXT;
|
||||
struct SampleLocationsInfoEXT;
|
||||
struct SamplerCreateInfo;
|
||||
struct SamplerReductionModeCreateInfoEXT;
|
||||
struct SamplerYcbcrConversionCreateInfo;
|
||||
using SamplerYcbcrConversionCreateInfoKHR = SamplerYcbcrConversionCreateInfo;
|
||||
struct SamplerYcbcrConversionImageFormatProperties;
|
||||
using SamplerYcbcrConversionImageFormatPropertiesKHR = SamplerYcbcrConversionImageFormatProperties;
|
||||
struct SamplerYcbcrConversionInfo;
|
||||
using SamplerYcbcrConversionInfoKHR = SamplerYcbcrConversionInfo;
|
||||
struct SemaphoreCreateInfo;
|
||||
struct SemaphoreGetFdInfoKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct SemaphoreGetWin32HandleInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct ShaderModuleCreateInfo;
|
||||
struct ShaderModuleValidationCacheCreateInfoEXT;
|
||||
struct ShaderResourceUsageAMD;
|
||||
struct ShaderStatisticsInfoAMD;
|
||||
struct ShadingRatePaletteNV;
|
||||
struct SharedPresentSurfaceCapabilitiesKHR;
|
||||
struct SparseBufferMemoryBindInfo;
|
||||
struct SparseImageFormatProperties;
|
||||
struct SparseImageFormatProperties2;
|
||||
using SparseImageFormatProperties2KHR = SparseImageFormatProperties2;
|
||||
struct SparseImageMemoryBind;
|
||||
struct SparseImageMemoryBindInfo;
|
||||
struct SparseImageMemoryRequirements;
|
||||
struct SparseImageMemoryRequirements2;
|
||||
using SparseImageMemoryRequirements2KHR = SparseImageMemoryRequirements2;
|
||||
struct SparseImageOpaqueMemoryBindInfo;
|
||||
struct SparseMemoryBind;
|
||||
struct SpecializationInfo;
|
||||
struct SpecializationMapEntry;
|
||||
struct StencilOpState;
|
||||
#ifdef VK_USE_PLATFORM_GGP
|
||||
struct StreamDescriptorSurfaceCreateInfoGGP;
|
||||
#endif /*VK_USE_PLATFORM_GGP*/
|
||||
struct SubmitInfo;
|
||||
struct SubpassBeginInfoKHR;
|
||||
struct SubpassDependency;
|
||||
struct SubpassDependency2KHR;
|
||||
struct SubpassDescription;
|
||||
struct SubpassDescription2KHR;
|
||||
struct SubpassDescriptionDepthStencilResolveKHR;
|
||||
struct SubpassEndInfoKHR;
|
||||
struct SubpassSampleLocationsEXT;
|
||||
struct SubresourceLayout;
|
||||
struct SurfaceCapabilities2EXT;
|
||||
struct SurfaceCapabilities2KHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct SurfaceCapabilitiesFullScreenExclusiveEXT;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct SurfaceCapabilitiesKHR;
|
||||
struct SurfaceFormat2KHR;
|
||||
struct SurfaceFormatKHR;
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct SurfaceFullScreenExclusiveInfoEXT;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct SurfaceFullScreenExclusiveWin32InfoEXT;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct SurfaceProtectedCapabilitiesKHR;
|
||||
struct SwapchainCounterCreateInfoEXT;
|
||||
struct SwapchainCreateInfoKHR;
|
||||
struct SwapchainDisplayNativeHdrCreateInfoAMD;
|
||||
struct TextureLODGatherFormatPropertiesAMD;
|
||||
struct ValidationCacheCreateInfoEXT;
|
||||
struct ValidationFeaturesEXT;
|
||||
struct ValidationFlagsEXT;
|
||||
struct VertexInputAttributeDescription;
|
||||
struct VertexInputBindingDescription;
|
||||
struct VertexInputBindingDivisorDescriptionEXT;
|
||||
#ifdef VK_USE_PLATFORM_VI_NN
|
||||
struct ViSurfaceCreateInfoNN;
|
||||
#endif /*VK_USE_PLATFORM_VI_NN*/
|
||||
struct Viewport;
|
||||
struct ViewportSwizzleNV;
|
||||
struct ViewportWScalingNV;
|
||||
#ifdef VK_USE_PLATFORM_WAYLAND_KHR
|
||||
struct WaylandSurfaceCreateInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WAYLAND_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct Win32KeyedMutexAcquireReleaseInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct Win32KeyedMutexAcquireReleaseInfoNV;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct Win32SurfaceCreateInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
struct WriteDescriptorSet;
|
||||
struct WriteDescriptorSetAccelerationStructureNV;
|
||||
struct WriteDescriptorSetInlineUniformBlockEXT;
|
||||
struct XYColorEXT;
|
||||
#ifdef VK_USE_PLATFORM_XCB_KHR
|
||||
struct XcbSurfaceCreateInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_XCB_KHR*/
|
||||
#ifdef VK_USE_PLATFORM_XLIB_KHR
|
||||
struct XlibSurfaceCreateInfoKHR;
|
||||
#endif /*VK_USE_PLATFORM_XLIB_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,251 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "dispatch.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct AllocationCallbacks;
|
||||
|
||||
template <typename OwnerType, typename Dispatch>
|
||||
class ObjectDestroy
|
||||
{
|
||||
public:
|
||||
ObjectDestroy()
|
||||
: m_owner()
|
||||
, m_allocationCallbacks( nullptr )
|
||||
, m_dispatch( nullptr )
|
||||
{}
|
||||
|
||||
ObjectDestroy( OwnerType owner, Optional<const AllocationCallbacks> allocationCallbacks = nullptr, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
||||
: m_owner( owner )
|
||||
, m_allocationCallbacks( allocationCallbacks )
|
||||
, m_dispatch( &dispatch )
|
||||
{}
|
||||
|
||||
OwnerType getOwner() const VULKAN_HPP_NOEXCEPT { return m_owner; }
|
||||
Optional<const AllocationCallbacks> getAllocator() const VULKAN_HPP_NOEXCEPT { return m_allocationCallbacks; }
|
||||
|
||||
protected:
|
||||
template <typename T>
|
||||
void destroy(T t) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
VULKAN_HPP_ASSERT( m_owner && m_dispatch );
|
||||
m_owner.destroy( t, m_allocationCallbacks, *m_dispatch );
|
||||
}
|
||||
|
||||
private:
|
||||
OwnerType m_owner;
|
||||
Optional<const AllocationCallbacks> m_allocationCallbacks;
|
||||
Dispatch const* m_dispatch;
|
||||
};
|
||||
|
||||
class NoParent;
|
||||
|
||||
template <typename Dispatch>
|
||||
class ObjectDestroy<NoParent,Dispatch>
|
||||
{
|
||||
public:
|
||||
ObjectDestroy()
|
||||
: m_allocationCallbacks( nullptr )
|
||||
, m_dispatch( nullptr )
|
||||
{}
|
||||
|
||||
ObjectDestroy( Optional<const AllocationCallbacks> allocationCallbacks, Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
||||
: m_allocationCallbacks( allocationCallbacks )
|
||||
, m_dispatch( &dispatch )
|
||||
{}
|
||||
|
||||
Optional<const AllocationCallbacks> getAllocator() const VULKAN_HPP_NOEXCEPT { return m_allocationCallbacks; }
|
||||
|
||||
protected:
|
||||
template <typename T>
|
||||
void destroy(T t) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
VULKAN_HPP_ASSERT( m_dispatch );
|
||||
t.destroy( m_allocationCallbacks, *m_dispatch );
|
||||
}
|
||||
|
||||
private:
|
||||
Optional<const AllocationCallbacks> m_allocationCallbacks;
|
||||
Dispatch const* m_dispatch;
|
||||
};
|
||||
|
||||
template <typename OwnerType, typename Dispatch>
|
||||
class ObjectFree
|
||||
{
|
||||
public:
|
||||
ObjectFree()
|
||||
: m_owner()
|
||||
, m_allocationCallbacks( nullptr )
|
||||
, m_dispatch( nullptr )
|
||||
{}
|
||||
|
||||
ObjectFree( OwnerType owner, Optional<const AllocationCallbacks> allocationCallbacks, Dispatch const &dispatch ) VULKAN_HPP_NOEXCEPT
|
||||
: m_owner( owner )
|
||||
, m_allocationCallbacks( allocationCallbacks )
|
||||
, m_dispatch( &dispatch )
|
||||
{}
|
||||
|
||||
OwnerType getOwner() const VULKAN_HPP_NOEXCEPT { return m_owner; }
|
||||
Optional<const AllocationCallbacks> getAllocator() const VULKAN_HPP_NOEXCEPT { return m_allocationCallbacks; }
|
||||
|
||||
protected:
|
||||
template <typename T>
|
||||
void destroy(T t) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
VULKAN_HPP_ASSERT( m_owner && m_dispatch );
|
||||
m_owner.free( t, m_allocationCallbacks, *m_dispatch );
|
||||
}
|
||||
|
||||
private:
|
||||
OwnerType m_owner;
|
||||
Optional<const AllocationCallbacks> m_allocationCallbacks;
|
||||
Dispatch const* m_dispatch;
|
||||
};
|
||||
|
||||
template <typename OwnerType, typename PoolType, typename Dispatch>
|
||||
class PoolFree
|
||||
{
|
||||
public:
|
||||
PoolFree( OwnerType owner = OwnerType(), PoolType pool = PoolType(), Dispatch const &dispatch = VULKAN_HPP_DEFAULT_DISPATCHER ) VULKAN_HPP_NOEXCEPT
|
||||
: m_owner( owner )
|
||||
, m_pool( pool )
|
||||
, m_dispatch( &dispatch )
|
||||
{}
|
||||
|
||||
OwnerType getOwner() const VULKAN_HPP_NOEXCEPT { return m_owner; }
|
||||
PoolType getPool() const VULKAN_HPP_NOEXCEPT { return m_pool; }
|
||||
|
||||
protected:
|
||||
template <typename T>
|
||||
void destroy(T t) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
m_owner.free( m_pool, t, *m_dispatch );
|
||||
}
|
||||
|
||||
private:
|
||||
OwnerType m_owner;
|
||||
PoolType m_pool;
|
||||
Dispatch const* m_dispatch;
|
||||
};
|
||||
|
||||
template<typename T, size_t N, size_t I>
|
||||
class PrivateConstExpression1DArrayCopy
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T * dst, T const* src ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
PrivateConstExpression1DArrayCopy<T, N, I - 1>::copy( dst, src );
|
||||
dst[I - 1] = src[I - 1];
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T, size_t N>
|
||||
class PrivateConstExpression1DArrayCopy<T, N, 0>
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T * /*dst*/, T const* /*src*/ ) VULKAN_HPP_NOEXCEPT
|
||||
{}
|
||||
};
|
||||
|
||||
template <typename T, size_t N>
|
||||
class ConstExpression1DArrayCopy
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T dst[N], const T src[N] ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
const size_t C = N / 2;
|
||||
PrivateConstExpression1DArrayCopy<T, C, C>::copy( dst, src );
|
||||
PrivateConstExpression1DArrayCopy<T, N - C, N - C>::copy(dst + C, src + C);
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T dst[N], std::array<T, N> const& src ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
const size_t C = N / 2;
|
||||
PrivateConstExpression1DArrayCopy<T, C, C>::copy(dst, src.data());
|
||||
PrivateConstExpression1DArrayCopy<T, N - C, N - C>::copy(dst + C, src.data() + C);
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T, size_t N, size_t M, size_t I, size_t J>
|
||||
class PrivateConstExpression2DArrayCopy
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T * dst, T const* src ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
PrivateConstExpression2DArrayCopy<T, N, M, I, J - 1>::copy( dst, src );
|
||||
dst[(I - 1) * M + J - 1] = src[(I - 1) * M + J - 1];
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T, size_t N, size_t M, size_t I>
|
||||
class PrivateConstExpression2DArrayCopy<T, N, M, I,0>
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T * dst, T const* src ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
PrivateConstExpression2DArrayCopy<T, N, M, I - 1, M>::copy( dst, src );
|
||||
}
|
||||
};
|
||||
|
||||
template<typename T, size_t N, size_t M, size_t J>
|
||||
class PrivateConstExpression2DArrayCopy<T, N, M, 0, J>
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T * /*dst*/, T const* /*src*/ ) VULKAN_HPP_NOEXCEPT
|
||||
{}
|
||||
};
|
||||
|
||||
template <typename T, size_t N, size_t M>
|
||||
class ConstExpression2DArrayCopy
|
||||
{
|
||||
public:
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T dst[N][M], const T src[N][M] ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
PrivateConstExpression2DArrayCopy<T, N, M, N, M>::copy( &dst[0][0], &src[0][0] );
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR_14 static void copy( T dst[N][M], std::array<std::array<T, M>, N> const& src ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
PrivateConstExpression2DArrayCopy<T, N, M, N, M>::copy( &dst[0][0], src.data()->data() );
|
||||
}
|
||||
};
|
||||
|
||||
using Bool32 = uint32_t;
|
||||
using DeviceAddress = uint64_t;
|
||||
using DeviceSize = uint64_t;
|
||||
using SampleMask = uint32_t;
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,789 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct GeometryTrianglesNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR GeometryTrianglesNV( VULKAN_HPP_NAMESPACE::Buffer vertexData_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset_ = {},
|
||||
uint32_t vertexCount_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Format vertexFormat_ = VULKAN_HPP_NAMESPACE::Format::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::Buffer indexData_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize indexOffset_ = {},
|
||||
uint32_t indexCount_ = {},
|
||||
VULKAN_HPP_NAMESPACE::IndexType indexType_ = VULKAN_HPP_NAMESPACE::IndexType::eUint16,
|
||||
VULKAN_HPP_NAMESPACE::Buffer transformData_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize transformOffset_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: vertexData( vertexData_ )
|
||||
, vertexOffset( vertexOffset_ )
|
||||
, vertexCount( vertexCount_ )
|
||||
, vertexStride( vertexStride_ )
|
||||
, vertexFormat( vertexFormat_ )
|
||||
, indexData( indexData_ )
|
||||
, indexOffset( indexOffset_ )
|
||||
, indexCount( indexCount_ )
|
||||
, indexType( indexType_ )
|
||||
, transformData( transformData_ )
|
||||
, transformOffset( transformOffset_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR GeometryTrianglesNV( GeometryTrianglesNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, vertexData( rhs.vertexData )
|
||||
, vertexOffset( rhs.vertexOffset )
|
||||
, vertexCount( rhs.vertexCount )
|
||||
, vertexStride( rhs.vertexStride )
|
||||
, vertexFormat( rhs.vertexFormat )
|
||||
, indexData( rhs.indexData )
|
||||
, indexOffset( rhs.indexOffset )
|
||||
, indexCount( rhs.indexCount )
|
||||
, indexType( rhs.indexType )
|
||||
, transformData( rhs.transformData )
|
||||
, transformOffset( rhs.transformOffset )
|
||||
{}
|
||||
|
||||
GeometryTrianglesNV & operator=( GeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( GeometryTrianglesNV ) - offsetof( GeometryTrianglesNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV( VkGeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV& operator=( VkGeometryTrianglesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::GeometryTrianglesNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setVertexData( VULKAN_HPP_NAMESPACE::Buffer vertexData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexData = vertexData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setVertexOffset( VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexOffset = vertexOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setVertexCount( uint32_t vertexCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexCount = vertexCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setVertexStride( VULKAN_HPP_NAMESPACE::DeviceSize vertexStride_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexStride = vertexStride_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setVertexFormat( VULKAN_HPP_NAMESPACE::Format vertexFormat_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexFormat = vertexFormat_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setIndexData( VULKAN_HPP_NAMESPACE::Buffer indexData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indexData = indexData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setIndexOffset( VULKAN_HPP_NAMESPACE::DeviceSize indexOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indexOffset = indexOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setIndexCount( uint32_t indexCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indexCount = indexCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setIndexType( VULKAN_HPP_NAMESPACE::IndexType indexType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indexType = indexType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setTransformData( VULKAN_HPP_NAMESPACE::Buffer transformData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
transformData = transformData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryTrianglesNV & setTransformOffset( VULKAN_HPP_NAMESPACE::DeviceSize transformOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
transformOffset = transformOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkGeometryTrianglesNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkGeometryTrianglesNV*>( this );
|
||||
}
|
||||
|
||||
operator VkGeometryTrianglesNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkGeometryTrianglesNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( GeometryTrianglesNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( GeometryTrianglesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( vertexData == rhs.vertexData )
|
||||
&& ( vertexOffset == rhs.vertexOffset )
|
||||
&& ( vertexCount == rhs.vertexCount )
|
||||
&& ( vertexStride == rhs.vertexStride )
|
||||
&& ( vertexFormat == rhs.vertexFormat )
|
||||
&& ( indexData == rhs.indexData )
|
||||
&& ( indexOffset == rhs.indexOffset )
|
||||
&& ( indexCount == rhs.indexCount )
|
||||
&& ( indexType == rhs.indexType )
|
||||
&& ( transformData == rhs.transformData )
|
||||
&& ( transformOffset == rhs.transformOffset );
|
||||
}
|
||||
|
||||
bool operator!=( GeometryTrianglesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryTrianglesNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer vertexData = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize vertexOffset = {};
|
||||
uint32_t vertexCount = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize vertexStride = {};
|
||||
VULKAN_HPP_NAMESPACE::Format vertexFormat = VULKAN_HPP_NAMESPACE::Format::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::Buffer indexData = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize indexOffset = {};
|
||||
uint32_t indexCount = {};
|
||||
VULKAN_HPP_NAMESPACE::IndexType indexType = VULKAN_HPP_NAMESPACE::IndexType::eUint16;
|
||||
VULKAN_HPP_NAMESPACE::Buffer transformData = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize transformOffset = {};
|
||||
};
|
||||
static_assert( sizeof( GeometryTrianglesNV ) == sizeof( VkGeometryTrianglesNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<GeometryTrianglesNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct GeometryAABBNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR GeometryAABBNV( VULKAN_HPP_NAMESPACE::Buffer aabbData_ = {},
|
||||
uint32_t numAABBs_ = {},
|
||||
uint32_t stride_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: aabbData( aabbData_ )
|
||||
, numAABBs( numAABBs_ )
|
||||
, stride( stride_ )
|
||||
, offset( offset_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR GeometryAABBNV( GeometryAABBNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, aabbData( rhs.aabbData )
|
||||
, numAABBs( rhs.numAABBs )
|
||||
, stride( rhs.stride )
|
||||
, offset( rhs.offset )
|
||||
{}
|
||||
|
||||
GeometryAABBNV & operator=( GeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( GeometryAABBNV ) - offsetof( GeometryAABBNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV( VkGeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
GeometryAABBNV& operator=( VkGeometryAABBNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::GeometryAABBNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV & setAabbData( VULKAN_HPP_NAMESPACE::Buffer aabbData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
aabbData = aabbData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV & setNumAABBs( uint32_t numAABBs_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
numAABBs = numAABBs_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV & setStride( uint32_t stride_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stride = stride_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryAABBNV & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkGeometryAABBNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkGeometryAABBNV*>( this );
|
||||
}
|
||||
|
||||
operator VkGeometryAABBNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkGeometryAABBNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( GeometryAABBNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( GeometryAABBNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( aabbData == rhs.aabbData )
|
||||
&& ( numAABBs == rhs.numAABBs )
|
||||
&& ( stride == rhs.stride )
|
||||
&& ( offset == rhs.offset );
|
||||
}
|
||||
|
||||
bool operator!=( GeometryAABBNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryAabbNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer aabbData = {};
|
||||
uint32_t numAABBs = {};
|
||||
uint32_t stride = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset = {};
|
||||
};
|
||||
static_assert( sizeof( GeometryAABBNV ) == sizeof( VkGeometryAABBNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<GeometryAABBNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct GeometryDataNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR GeometryDataNV( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV triangles_ = {},
|
||||
VULKAN_HPP_NAMESPACE::GeometryAABBNV aabbs_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: triangles( triangles_ )
|
||||
, aabbs( aabbs_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR GeometryDataNV( GeometryDataNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: triangles( rhs.triangles )
|
||||
, aabbs( rhs.aabbs )
|
||||
{}
|
||||
|
||||
GeometryDataNV & operator=( GeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( GeometryDataNV ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryDataNV( VkGeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
GeometryDataNV& operator=( VkGeometryDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::GeometryDataNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryDataNV & setTriangles( VULKAN_HPP_NAMESPACE::GeometryTrianglesNV triangles_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
triangles = triangles_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryDataNV & setAabbs( VULKAN_HPP_NAMESPACE::GeometryAABBNV aabbs_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
aabbs = aabbs_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkGeometryDataNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkGeometryDataNV*>( this );
|
||||
}
|
||||
|
||||
operator VkGeometryDataNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkGeometryDataNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( GeometryDataNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( GeometryDataNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( triangles == rhs.triangles )
|
||||
&& ( aabbs == rhs.aabbs );
|
||||
}
|
||||
|
||||
bool operator!=( GeometryDataNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::GeometryTrianglesNV triangles = {};
|
||||
VULKAN_HPP_NAMESPACE::GeometryAABBNV aabbs = {};
|
||||
};
|
||||
static_assert( sizeof( GeometryDataNV ) == sizeof( VkGeometryDataNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<GeometryDataNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct GeometryNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR GeometryNV( VULKAN_HPP_NAMESPACE::GeometryTypeNV geometryType_ = VULKAN_HPP_NAMESPACE::GeometryTypeNV::eTriangles,
|
||||
VULKAN_HPP_NAMESPACE::GeometryDataNV geometry_ = {},
|
||||
VULKAN_HPP_NAMESPACE::GeometryFlagsNV flags_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: geometryType( geometryType_ )
|
||||
, geometry( geometry_ )
|
||||
, flags( flags_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR GeometryNV( GeometryNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, geometryType( rhs.geometryType )
|
||||
, geometry( rhs.geometry )
|
||||
, flags( rhs.flags )
|
||||
{}
|
||||
|
||||
GeometryNV & operator=( GeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( GeometryNV ) - offsetof( GeometryNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryNV( VkGeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
GeometryNV& operator=( VkGeometryNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::GeometryNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryNV & setGeometryType( VULKAN_HPP_NAMESPACE::GeometryTypeNV geometryType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
geometryType = geometryType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryNV & setGeometry( VULKAN_HPP_NAMESPACE::GeometryDataNV geometry_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
geometry = geometry_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
GeometryNV & setFlags( VULKAN_HPP_NAMESPACE::GeometryFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkGeometryNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkGeometryNV*>( this );
|
||||
}
|
||||
|
||||
operator VkGeometryNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkGeometryNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( GeometryNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( GeometryNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( geometryType == rhs.geometryType )
|
||||
&& ( geometry == rhs.geometry )
|
||||
&& ( flags == rhs.flags );
|
||||
}
|
||||
|
||||
bool operator!=( GeometryNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eGeometryNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::GeometryTypeNV geometryType = VULKAN_HPP_NAMESPACE::GeometryTypeNV::eTriangles;
|
||||
VULKAN_HPP_NAMESPACE::GeometryDataNV geometry = {};
|
||||
VULKAN_HPP_NAMESPACE::GeometryFlagsNV flags = {};
|
||||
};
|
||||
static_assert( sizeof( GeometryNV ) == sizeof( VkGeometryNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<GeometryNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AccelerationStructureInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureInfoNV( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type_ = VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV::eTopLevel,
|
||||
VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags_ = {},
|
||||
uint32_t instanceCount_ = {},
|
||||
uint32_t geometryCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::GeometryNV* pGeometries_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: type( type_ )
|
||||
, flags( flags_ )
|
||||
, instanceCount( instanceCount_ )
|
||||
, geometryCount( geometryCount_ )
|
||||
, pGeometries( pGeometries_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureInfoNV( AccelerationStructureInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, type( rhs.type )
|
||||
, flags( rhs.flags )
|
||||
, instanceCount( rhs.instanceCount )
|
||||
, geometryCount( rhs.geometryCount )
|
||||
, pGeometries( rhs.pGeometries )
|
||||
{}
|
||||
|
||||
AccelerationStructureInfoNV & operator=( AccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AccelerationStructureInfoNV ) - offsetof( AccelerationStructureInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV( VkAccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV& operator=( VkAccelerationStructureInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setType( VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
type = type_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setFlags( VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
instanceCount = instanceCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setGeometryCount( uint32_t geometryCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
geometryCount = geometryCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureInfoNV & setPGeometries( const VULKAN_HPP_NAMESPACE::GeometryNV* pGeometries_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pGeometries = pGeometries_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAccelerationStructureInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAccelerationStructureInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AccelerationStructureInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( AccelerationStructureInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( type == rhs.type )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( instanceCount == rhs.instanceCount )
|
||||
&& ( geometryCount == rhs.geometryCount )
|
||||
&& ( pGeometries == rhs.pGeometries );
|
||||
}
|
||||
|
||||
bool operator!=( AccelerationStructureInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV type = VULKAN_HPP_NAMESPACE::AccelerationStructureTypeNV::eTopLevel;
|
||||
VULKAN_HPP_NAMESPACE::BuildAccelerationStructureFlagsNV flags = {};
|
||||
uint32_t instanceCount = {};
|
||||
uint32_t geometryCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::GeometryNV* pGeometries = {};
|
||||
};
|
||||
static_assert( sizeof( AccelerationStructureInfoNV ) == sizeof( VkAccelerationStructureInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AccelerationStructureInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AccelerationStructureCreateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureCreateInfoNV( VULKAN_HPP_NAMESPACE::DeviceSize compactedSize_ = {},
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV info_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: compactedSize( compactedSize_ )
|
||||
, info( info_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureCreateInfoNV( AccelerationStructureCreateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, compactedSize( rhs.compactedSize )
|
||||
, info( rhs.info )
|
||||
{}
|
||||
|
||||
AccelerationStructureCreateInfoNV & operator=( AccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AccelerationStructureCreateInfoNV ) - offsetof( AccelerationStructureCreateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureCreateInfoNV( VkAccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AccelerationStructureCreateInfoNV& operator=( VkAccelerationStructureCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AccelerationStructureCreateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureCreateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureCreateInfoNV & setCompactedSize( VULKAN_HPP_NAMESPACE::DeviceSize compactedSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
compactedSize = compactedSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureCreateInfoNV & setInfo( VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV info_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
info = info_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureCreateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAccelerationStructureCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureCreateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAccelerationStructureCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AccelerationStructureCreateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( AccelerationStructureCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( compactedSize == rhs.compactedSize )
|
||||
&& ( info == rhs.info );
|
||||
}
|
||||
|
||||
bool operator!=( AccelerationStructureCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureCreateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize compactedSize = {};
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureInfoNV info = {};
|
||||
};
|
||||
static_assert( sizeof( AccelerationStructureCreateInfoNV ) == sizeof( VkAccelerationStructureCreateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AccelerationStructureCreateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AccelerationStructureMemoryRequirementsInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureMemoryRequirementsInfoNV( VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type_ = VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV::eObject,
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: type( type_ )
|
||||
, accelerationStructure( accelerationStructure_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AccelerationStructureMemoryRequirementsInfoNV( AccelerationStructureMemoryRequirementsInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, type( rhs.type )
|
||||
, accelerationStructure( rhs.accelerationStructure )
|
||||
{}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV & operator=( AccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AccelerationStructureMemoryRequirementsInfoNV ) - offsetof( AccelerationStructureMemoryRequirementsInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV( VkAccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV& operator=( VkAccelerationStructureMemoryRequirementsInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV & setType( VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
type = type_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AccelerationStructureMemoryRequirementsInfoNV & setAccelerationStructure( VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
accelerationStructure = accelerationStructure_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureMemoryRequirementsInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAccelerationStructureMemoryRequirementsInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkAccelerationStructureMemoryRequirementsInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAccelerationStructureMemoryRequirementsInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AccelerationStructureMemoryRequirementsInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( AccelerationStructureMemoryRequirementsInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( type == rhs.type )
|
||||
&& ( accelerationStructure == rhs.accelerationStructure );
|
||||
}
|
||||
|
||||
bool operator!=( AccelerationStructureMemoryRequirementsInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAccelerationStructureMemoryRequirementsInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV type = VULKAN_HPP_NAMESPACE::AccelerationStructureMemoryRequirementsTypeNV::eObject;
|
||||
VULKAN_HPP_NAMESPACE::AccelerationStructureNV accelerationStructure = {};
|
||||
};
|
||||
static_assert( sizeof( AccelerationStructureMemoryRequirementsInfoNV ) == sizeof( VkAccelerationStructureMemoryRequirementsInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AccelerationStructureMemoryRequirementsInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,158 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct AcquireNextImageInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AcquireNextImageInfoKHR( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ = {},
|
||||
uint64_t timeout_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Fence fence_ = {},
|
||||
uint32_t deviceMask_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: swapchain( swapchain_ )
|
||||
, timeout( timeout_ )
|
||||
, semaphore( semaphore_ )
|
||||
, fence( fence_ )
|
||||
, deviceMask( deviceMask_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AcquireNextImageInfoKHR( AcquireNextImageInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, swapchain( rhs.swapchain )
|
||||
, timeout( rhs.timeout )
|
||||
, semaphore( rhs.semaphore )
|
||||
, fence( rhs.fence )
|
||||
, deviceMask( rhs.deviceMask )
|
||||
{}
|
||||
|
||||
AcquireNextImageInfoKHR & operator=( AcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AcquireNextImageInfoKHR ) - offsetof( AcquireNextImageInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR( VkAcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR& operator=( VkAcquireNextImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AcquireNextImageInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setSwapchain( VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
swapchain = swapchain_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setTimeout( uint64_t timeout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
timeout = timeout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
semaphore = semaphore_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fence = fence_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AcquireNextImageInfoKHR & setDeviceMask( uint32_t deviceMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
deviceMask = deviceMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAcquireNextImageInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAcquireNextImageInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkAcquireNextImageInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAcquireNextImageInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AcquireNextImageInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( AcquireNextImageInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( swapchain == rhs.swapchain )
|
||||
&& ( timeout == rhs.timeout )
|
||||
&& ( semaphore == rhs.semaphore )
|
||||
&& ( fence == rhs.fence )
|
||||
&& ( deviceMask == rhs.deviceMask );
|
||||
}
|
||||
|
||||
bool operator!=( AcquireNextImageInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAcquireNextImageInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::SwapchainKHR swapchain = {};
|
||||
uint64_t timeout = {};
|
||||
VULKAN_HPP_NAMESPACE::Semaphore semaphore = {};
|
||||
VULKAN_HPP_NAMESPACE::Fence fence = {};
|
||||
uint32_t deviceMask = {};
|
||||
};
|
||||
static_assert( sizeof( AcquireNextImageInfoKHR ) == sizeof( VkAcquireNextImageInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AcquireNextImageInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,159 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct AllocationCallbacks
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AllocationCallbacks( void* pUserData_ = {},
|
||||
PFN_vkAllocationFunction pfnAllocation_ = {},
|
||||
PFN_vkReallocationFunction pfnReallocation_ = {},
|
||||
PFN_vkFreeFunction pfnFree_ = {},
|
||||
PFN_vkInternalAllocationNotification pfnInternalAllocation_ = {},
|
||||
PFN_vkInternalFreeNotification pfnInternalFree_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pUserData( pUserData_ )
|
||||
, pfnAllocation( pfnAllocation_ )
|
||||
, pfnReallocation( pfnReallocation_ )
|
||||
, pfnFree( pfnFree_ )
|
||||
, pfnInternalAllocation( pfnInternalAllocation_ )
|
||||
, pfnInternalFree( pfnInternalFree_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AllocationCallbacks( AllocationCallbacks const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pUserData( rhs.pUserData )
|
||||
, pfnAllocation( rhs.pfnAllocation )
|
||||
, pfnReallocation( rhs.pfnReallocation )
|
||||
, pfnFree( rhs.pfnFree )
|
||||
, pfnInternalAllocation( rhs.pfnInternalAllocation )
|
||||
, pfnInternalFree( rhs.pfnInternalFree )
|
||||
{}
|
||||
|
||||
AllocationCallbacks & operator=( AllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( AllocationCallbacks ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks( VkAllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AllocationCallbacks& operator=( VkAllocationCallbacks const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AllocationCallbacks const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPUserData( void* pUserData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pUserData = pUserData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPfnAllocation( PFN_vkAllocationFunction pfnAllocation_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pfnAllocation = pfnAllocation_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPfnReallocation( PFN_vkReallocationFunction pfnReallocation_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pfnReallocation = pfnReallocation_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPfnFree( PFN_vkFreeFunction pfnFree_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pfnFree = pfnFree_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPfnInternalAllocation( PFN_vkInternalAllocationNotification pfnInternalAllocation_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pfnInternalAllocation = pfnInternalAllocation_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AllocationCallbacks & setPfnInternalFree( PFN_vkInternalFreeNotification pfnInternalFree_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pfnInternalFree = pfnInternalFree_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAllocationCallbacks const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAllocationCallbacks*>( this );
|
||||
}
|
||||
|
||||
operator VkAllocationCallbacks &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAllocationCallbacks*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AllocationCallbacks const& ) const = default;
|
||||
#else
|
||||
bool operator==( AllocationCallbacks const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( pUserData == rhs.pUserData )
|
||||
&& ( pfnAllocation == rhs.pfnAllocation )
|
||||
&& ( pfnReallocation == rhs.pfnReallocation )
|
||||
&& ( pfnFree == rhs.pfnFree )
|
||||
&& ( pfnInternalAllocation == rhs.pfnInternalAllocation )
|
||||
&& ( pfnInternalFree == rhs.pfnInternalFree );
|
||||
}
|
||||
|
||||
bool operator!=( AllocationCallbacks const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
void* pUserData = {};
|
||||
PFN_vkAllocationFunction pfnAllocation = {};
|
||||
PFN_vkReallocationFunction pfnReallocation = {};
|
||||
PFN_vkFreeFunction pfnFree = {};
|
||||
PFN_vkInternalAllocationNotification pfnInternalAllocation = {};
|
||||
PFN_vkInternalFreeNotification pfnInternalFree = {};
|
||||
};
|
||||
static_assert( sizeof( AllocationCallbacks ) == sizeof( VkAllocationCallbacks ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AllocationCallbacks>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,458 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ComponentMapping
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ComponentMapping( VULKAN_HPP_NAMESPACE::ComponentSwizzle r_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity,
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle g_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity,
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle b_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity,
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle a_ = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity ) VULKAN_HPP_NOEXCEPT
|
||||
: r( r_ )
|
||||
, g( g_ )
|
||||
, b( b_ )
|
||||
, a( a_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ComponentMapping( ComponentMapping const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: r( rhs.r )
|
||||
, g( rhs.g )
|
||||
, b( rhs.b )
|
||||
, a( rhs.a )
|
||||
{}
|
||||
|
||||
ComponentMapping & operator=( ComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ComponentMapping ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComponentMapping( VkComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ComponentMapping& operator=( VkComponentMapping const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ComponentMapping const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComponentMapping & setR( VULKAN_HPP_NAMESPACE::ComponentSwizzle r_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
r = r_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComponentMapping & setG( VULKAN_HPP_NAMESPACE::ComponentSwizzle g_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
g = g_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComponentMapping & setB( VULKAN_HPP_NAMESPACE::ComponentSwizzle b_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
b = b_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComponentMapping & setA( VULKAN_HPP_NAMESPACE::ComponentSwizzle a_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
a = a_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkComponentMapping const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkComponentMapping*>( this );
|
||||
}
|
||||
|
||||
operator VkComponentMapping &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkComponentMapping*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ComponentMapping const& ) const = default;
|
||||
#else
|
||||
bool operator==( ComponentMapping const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( r == rhs.r )
|
||||
&& ( g == rhs.g )
|
||||
&& ( b == rhs.b )
|
||||
&& ( a == rhs.a );
|
||||
}
|
||||
|
||||
bool operator!=( ComponentMapping const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle r = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity;
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle g = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity;
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle b = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity;
|
||||
VULKAN_HPP_NAMESPACE::ComponentSwizzle a = VULKAN_HPP_NAMESPACE::ComponentSwizzle::eIdentity;
|
||||
};
|
||||
static_assert( sizeof( ComponentMapping ) == sizeof( VkComponentMapping ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ComponentMapping>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferFormatPropertiesANDROID
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatPropertiesANDROID( VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined,
|
||||
uint64_t externalFormat_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity,
|
||||
VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange_ = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull,
|
||||
VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven,
|
||||
VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset_ = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven ) VULKAN_HPP_NOEXCEPT
|
||||
: format( format_ )
|
||||
, externalFormat( externalFormat_ )
|
||||
, formatFeatures( formatFeatures_ )
|
||||
, samplerYcbcrConversionComponents( samplerYcbcrConversionComponents_ )
|
||||
, suggestedYcbcrModel( suggestedYcbcrModel_ )
|
||||
, suggestedYcbcrRange( suggestedYcbcrRange_ )
|
||||
, suggestedXChromaOffset( suggestedXChromaOffset_ )
|
||||
, suggestedYChromaOffset( suggestedYChromaOffset_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferFormatPropertiesANDROID( AndroidHardwareBufferFormatPropertiesANDROID const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, format( rhs.format )
|
||||
, externalFormat( rhs.externalFormat )
|
||||
, formatFeatures( rhs.formatFeatures )
|
||||
, samplerYcbcrConversionComponents( rhs.samplerYcbcrConversionComponents )
|
||||
, suggestedYcbcrModel( rhs.suggestedYcbcrModel )
|
||||
, suggestedYcbcrRange( rhs.suggestedYcbcrRange )
|
||||
, suggestedXChromaOffset( rhs.suggestedXChromaOffset )
|
||||
, suggestedYChromaOffset( rhs.suggestedYChromaOffset )
|
||||
{}
|
||||
|
||||
AndroidHardwareBufferFormatPropertiesANDROID & operator=( AndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AndroidHardwareBufferFormatPropertiesANDROID ) - offsetof( AndroidHardwareBufferFormatPropertiesANDROID, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferFormatPropertiesANDROID( VkAndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferFormatPropertiesANDROID& operator=( VkAndroidHardwareBufferFormatPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AndroidHardwareBufferFormatPropertiesANDROID const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferFormatPropertiesANDROID const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAndroidHardwareBufferFormatPropertiesANDROID*>( this );
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferFormatPropertiesANDROID &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAndroidHardwareBufferFormatPropertiesANDROID*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AndroidHardwareBufferFormatPropertiesANDROID const& ) const = default;
|
||||
#else
|
||||
bool operator==( AndroidHardwareBufferFormatPropertiesANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( format == rhs.format )
|
||||
&& ( externalFormat == rhs.externalFormat )
|
||||
&& ( formatFeatures == rhs.formatFeatures )
|
||||
&& ( samplerYcbcrConversionComponents == rhs.samplerYcbcrConversionComponents )
|
||||
&& ( suggestedYcbcrModel == rhs.suggestedYcbcrModel )
|
||||
&& ( suggestedYcbcrRange == rhs.suggestedYcbcrRange )
|
||||
&& ( suggestedXChromaOffset == rhs.suggestedXChromaOffset )
|
||||
&& ( suggestedYChromaOffset == rhs.suggestedYChromaOffset );
|
||||
}
|
||||
|
||||
bool operator!=( AndroidHardwareBufferFormatPropertiesANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferFormatPropertiesANDROID;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined;
|
||||
uint64_t externalFormat = {};
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags formatFeatures = {};
|
||||
VULKAN_HPP_NAMESPACE::ComponentMapping samplerYcbcrConversionComponents = {};
|
||||
VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion suggestedYcbcrModel = VULKAN_HPP_NAMESPACE::SamplerYcbcrModelConversion::eRgbIdentity;
|
||||
VULKAN_HPP_NAMESPACE::SamplerYcbcrRange suggestedYcbcrRange = VULKAN_HPP_NAMESPACE::SamplerYcbcrRange::eItuFull;
|
||||
VULKAN_HPP_NAMESPACE::ChromaLocation suggestedXChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven;
|
||||
VULKAN_HPP_NAMESPACE::ChromaLocation suggestedYChromaOffset = VULKAN_HPP_NAMESPACE::ChromaLocation::eCositedEven;
|
||||
};
|
||||
static_assert( sizeof( AndroidHardwareBufferFormatPropertiesANDROID ) == sizeof( VkAndroidHardwareBufferFormatPropertiesANDROID ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AndroidHardwareBufferFormatPropertiesANDROID>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferPropertiesANDROID
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferPropertiesANDROID( VULKAN_HPP_NAMESPACE::DeviceSize allocationSize_ = {},
|
||||
uint32_t memoryTypeBits_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: allocationSize( allocationSize_ )
|
||||
, memoryTypeBits( memoryTypeBits_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferPropertiesANDROID( AndroidHardwareBufferPropertiesANDROID const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, allocationSize( rhs.allocationSize )
|
||||
, memoryTypeBits( rhs.memoryTypeBits )
|
||||
{}
|
||||
|
||||
AndroidHardwareBufferPropertiesANDROID & operator=( AndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AndroidHardwareBufferPropertiesANDROID ) - offsetof( AndroidHardwareBufferPropertiesANDROID, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferPropertiesANDROID( VkAndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferPropertiesANDROID& operator=( VkAndroidHardwareBufferPropertiesANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AndroidHardwareBufferPropertiesANDROID const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferPropertiesANDROID const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAndroidHardwareBufferPropertiesANDROID*>( this );
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferPropertiesANDROID &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAndroidHardwareBufferPropertiesANDROID*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AndroidHardwareBufferPropertiesANDROID const& ) const = default;
|
||||
#else
|
||||
bool operator==( AndroidHardwareBufferPropertiesANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( allocationSize == rhs.allocationSize )
|
||||
&& ( memoryTypeBits == rhs.memoryTypeBits );
|
||||
}
|
||||
|
||||
bool operator!=( AndroidHardwareBufferPropertiesANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferPropertiesANDROID;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize allocationSize = {};
|
||||
uint32_t memoryTypeBits = {};
|
||||
};
|
||||
static_assert( sizeof( AndroidHardwareBufferPropertiesANDROID ) == sizeof( VkAndroidHardwareBufferPropertiesANDROID ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AndroidHardwareBufferPropertiesANDROID>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidHardwareBufferUsageANDROID
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferUsageANDROID( uint64_t androidHardwareBufferUsage_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: androidHardwareBufferUsage( androidHardwareBufferUsage_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AndroidHardwareBufferUsageANDROID( AndroidHardwareBufferUsageANDROID const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, androidHardwareBufferUsage( rhs.androidHardwareBufferUsage )
|
||||
{}
|
||||
|
||||
AndroidHardwareBufferUsageANDROID & operator=( AndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AndroidHardwareBufferUsageANDROID ) - offsetof( AndroidHardwareBufferUsageANDROID, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferUsageANDROID( VkAndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AndroidHardwareBufferUsageANDROID& operator=( VkAndroidHardwareBufferUsageANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AndroidHardwareBufferUsageANDROID const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferUsageANDROID const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAndroidHardwareBufferUsageANDROID*>( this );
|
||||
}
|
||||
|
||||
operator VkAndroidHardwareBufferUsageANDROID &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAndroidHardwareBufferUsageANDROID*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AndroidHardwareBufferUsageANDROID const& ) const = default;
|
||||
#else
|
||||
bool operator==( AndroidHardwareBufferUsageANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( androidHardwareBufferUsage == rhs.androidHardwareBufferUsage );
|
||||
}
|
||||
|
||||
bool operator!=( AndroidHardwareBufferUsageANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidHardwareBufferUsageANDROID;
|
||||
void* pNext = {};
|
||||
uint64_t androidHardwareBufferUsage = {};
|
||||
};
|
||||
static_assert( sizeof( AndroidHardwareBufferUsageANDROID ) == sizeof( VkAndroidHardwareBufferUsageANDROID ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AndroidHardwareBufferUsageANDROID>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct AndroidSurfaceCreateInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AndroidSurfaceCreateInfoKHR( VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags_ = {},
|
||||
struct ANativeWindow* window_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, window( window_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AndroidSurfaceCreateInfoKHR( AndroidSurfaceCreateInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, window( rhs.window )
|
||||
{}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR & operator=( AndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AndroidSurfaceCreateInfoKHR ) - offsetof( AndroidSurfaceCreateInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR( VkAndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR& operator=( VkAndroidSurfaceCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AndroidSurfaceCreateInfoKHR & setWindow( struct ANativeWindow* window_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
window = window_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAndroidSurfaceCreateInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAndroidSurfaceCreateInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkAndroidSurfaceCreateInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAndroidSurfaceCreateInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AndroidSurfaceCreateInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( AndroidSurfaceCreateInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( window == rhs.window );
|
||||
}
|
||||
|
||||
bool operator!=( AndroidSurfaceCreateInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAndroidSurfaceCreateInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::AndroidSurfaceCreateFlagsKHR flags = {};
|
||||
struct ANativeWindow* window = {};
|
||||
};
|
||||
static_assert( sizeof( AndroidSurfaceCreateInfoKHR ) == sizeof( VkAndroidSurfaceCreateInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AndroidSurfaceCreateInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,161 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ApplicationInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ApplicationInfo( const char* pApplicationName_ = {},
|
||||
uint32_t applicationVersion_ = {},
|
||||
const char* pEngineName_ = {},
|
||||
uint32_t engineVersion_ = {},
|
||||
uint32_t apiVersion_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pApplicationName( pApplicationName_ )
|
||||
, applicationVersion( applicationVersion_ )
|
||||
, pEngineName( pEngineName_ )
|
||||
, engineVersion( engineVersion_ )
|
||||
, apiVersion( apiVersion_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ApplicationInfo( ApplicationInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pApplicationName( rhs.pApplicationName )
|
||||
, applicationVersion( rhs.applicationVersion )
|
||||
, pEngineName( rhs.pEngineName )
|
||||
, engineVersion( rhs.engineVersion )
|
||||
, apiVersion( rhs.apiVersion )
|
||||
{}
|
||||
|
||||
ApplicationInfo & operator=( ApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ApplicationInfo ) - offsetof( ApplicationInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo( VkApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ApplicationInfo& operator=( VkApplicationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ApplicationInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setPApplicationName( const char* pApplicationName_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pApplicationName = pApplicationName_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setApplicationVersion( uint32_t applicationVersion_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
applicationVersion = applicationVersion_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setPEngineName( const char* pEngineName_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pEngineName = pEngineName_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setEngineVersion( uint32_t engineVersion_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
engineVersion = engineVersion_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ApplicationInfo & setApiVersion( uint32_t apiVersion_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
apiVersion = apiVersion_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkApplicationInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkApplicationInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkApplicationInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkApplicationInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ApplicationInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ApplicationInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pApplicationName == rhs.pApplicationName )
|
||||
&& ( applicationVersion == rhs.applicationVersion )
|
||||
&& ( pEngineName == rhs.pEngineName )
|
||||
&& ( engineVersion == rhs.engineVersion )
|
||||
&& ( apiVersion == rhs.apiVersion );
|
||||
}
|
||||
|
||||
bool operator!=( ApplicationInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eApplicationInfo;
|
||||
const void* pNext = {};
|
||||
const char* pApplicationName = {};
|
||||
uint32_t applicationVersion = {};
|
||||
const char* pEngineName = {};
|
||||
uint32_t engineVersion = {};
|
||||
uint32_t apiVersion = {};
|
||||
};
|
||||
static_assert( sizeof( ApplicationInfo ) == sizeof( VkApplicationInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ApplicationInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,857 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct AttachmentDescription
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AttachmentDescription( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore,
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, format( format_ )
|
||||
, samples( samples_ )
|
||||
, loadOp( loadOp_ )
|
||||
, storeOp( storeOp_ )
|
||||
, stencilLoadOp( stencilLoadOp_ )
|
||||
, stencilStoreOp( stencilStoreOp_ )
|
||||
, initialLayout( initialLayout_ )
|
||||
, finalLayout( finalLayout_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AttachmentDescription( AttachmentDescription const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( rhs.flags )
|
||||
, format( rhs.format )
|
||||
, samples( rhs.samples )
|
||||
, loadOp( rhs.loadOp )
|
||||
, storeOp( rhs.storeOp )
|
||||
, stencilLoadOp( rhs.stencilLoadOp )
|
||||
, stencilStoreOp( rhs.stencilStoreOp )
|
||||
, initialLayout( rhs.initialLayout )
|
||||
, finalLayout( rhs.finalLayout )
|
||||
{}
|
||||
|
||||
AttachmentDescription & operator=( AttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( AttachmentDescription ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription( VkAttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AttachmentDescription& operator=( VkAttachmentDescription const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AttachmentDescription const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setFlags( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
format = format_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
samples = samples_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
loadOp = loadOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
storeOp = storeOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setStencilLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stencilLoadOp = stencilLoadOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setStencilStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stencilStoreOp = stencilStoreOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
initialLayout = initialLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription & setFinalLayout( VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
finalLayout = finalLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAttachmentDescription const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAttachmentDescription*>( this );
|
||||
}
|
||||
|
||||
operator VkAttachmentDescription &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAttachmentDescription*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AttachmentDescription const& ) const = default;
|
||||
#else
|
||||
bool operator==( AttachmentDescription const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( flags == rhs.flags )
|
||||
&& ( format == rhs.format )
|
||||
&& ( samples == rhs.samples )
|
||||
&& ( loadOp == rhs.loadOp )
|
||||
&& ( storeOp == rhs.storeOp )
|
||||
&& ( stencilLoadOp == rhs.stencilLoadOp )
|
||||
&& ( stencilStoreOp == rhs.stencilStoreOp )
|
||||
&& ( initialLayout == rhs.initialLayout )
|
||||
&& ( finalLayout == rhs.finalLayout );
|
||||
}
|
||||
|
||||
bool operator!=( AttachmentDescription const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore;
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout initialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout finalLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
};
|
||||
static_assert( sizeof( AttachmentDescription ) == sizeof( VkAttachmentDescription ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AttachmentDescription>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AttachmentDescription2KHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AttachmentDescription2KHR( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad,
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore,
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, format( format_ )
|
||||
, samples( samples_ )
|
||||
, loadOp( loadOp_ )
|
||||
, storeOp( storeOp_ )
|
||||
, stencilLoadOp( stencilLoadOp_ )
|
||||
, stencilStoreOp( stencilStoreOp_ )
|
||||
, initialLayout( initialLayout_ )
|
||||
, finalLayout( finalLayout_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AttachmentDescription2KHR( AttachmentDescription2KHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, format( rhs.format )
|
||||
, samples( rhs.samples )
|
||||
, loadOp( rhs.loadOp )
|
||||
, storeOp( rhs.storeOp )
|
||||
, stencilLoadOp( rhs.stencilLoadOp )
|
||||
, stencilStoreOp( rhs.stencilStoreOp )
|
||||
, initialLayout( rhs.initialLayout )
|
||||
, finalLayout( rhs.finalLayout )
|
||||
{}
|
||||
|
||||
AttachmentDescription2KHR & operator=( AttachmentDescription2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AttachmentDescription2KHR ) - offsetof( AttachmentDescription2KHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR( VkAttachmentDescription2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR& operator=( VkAttachmentDescription2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AttachmentDescription2KHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setFlags( VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
format = format_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setSamples( VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
samples = samples_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
loadOp = loadOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
storeOp = storeOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setStencilLoadOp( VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stencilLoadOp = stencilLoadOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setStencilStoreOp( VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stencilStoreOp = stencilStoreOp_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setInitialLayout( VULKAN_HPP_NAMESPACE::ImageLayout initialLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
initialLayout = initialLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentDescription2KHR & setFinalLayout( VULKAN_HPP_NAMESPACE::ImageLayout finalLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
finalLayout = finalLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAttachmentDescription2KHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAttachmentDescription2KHR*>( this );
|
||||
}
|
||||
|
||||
operator VkAttachmentDescription2KHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAttachmentDescription2KHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AttachmentDescription2KHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( AttachmentDescription2KHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( format == rhs.format )
|
||||
&& ( samples == rhs.samples )
|
||||
&& ( loadOp == rhs.loadOp )
|
||||
&& ( storeOp == rhs.storeOp )
|
||||
&& ( stencilLoadOp == rhs.stencilLoadOp )
|
||||
&& ( stencilStoreOp == rhs.stencilStoreOp )
|
||||
&& ( initialLayout == rhs.initialLayout )
|
||||
&& ( finalLayout == rhs.finalLayout );
|
||||
}
|
||||
|
||||
bool operator!=( AttachmentDescription2KHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentDescription2KHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::AttachmentDescriptionFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits samples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp loadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp storeOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentLoadOp stencilLoadOp = VULKAN_HPP_NAMESPACE::AttachmentLoadOp::eLoad;
|
||||
VULKAN_HPP_NAMESPACE::AttachmentStoreOp stencilStoreOp = VULKAN_HPP_NAMESPACE::AttachmentStoreOp::eStore;
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout initialLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout finalLayout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
};
|
||||
static_assert( sizeof( AttachmentDescription2KHR ) == sizeof( VkAttachmentDescription2KHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AttachmentDescription2KHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AttachmentReference
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AttachmentReference( uint32_t attachment_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout layout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined ) VULKAN_HPP_NOEXCEPT
|
||||
: attachment( attachment_ )
|
||||
, layout( layout_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AttachmentReference( AttachmentReference const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: attachment( rhs.attachment )
|
||||
, layout( rhs.layout )
|
||||
{}
|
||||
|
||||
AttachmentReference & operator=( AttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( AttachmentReference ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference( VkAttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AttachmentReference& operator=( VkAttachmentReference const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AttachmentReference const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference & setAttachment( uint32_t attachment_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
attachment = attachment_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference & setLayout( VULKAN_HPP_NAMESPACE::ImageLayout layout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layout = layout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAttachmentReference const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAttachmentReference*>( this );
|
||||
}
|
||||
|
||||
operator VkAttachmentReference &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAttachmentReference*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AttachmentReference const& ) const = default;
|
||||
#else
|
||||
bool operator==( AttachmentReference const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( attachment == rhs.attachment )
|
||||
&& ( layout == rhs.layout );
|
||||
}
|
||||
|
||||
bool operator!=( AttachmentReference const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t attachment = {};
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout layout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
};
|
||||
static_assert( sizeof( AttachmentReference ) == sizeof( VkAttachmentReference ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AttachmentReference>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AttachmentReference2KHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AttachmentReference2KHR( uint32_t attachment_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout layout_ = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: attachment( attachment_ )
|
||||
, layout( layout_ )
|
||||
, aspectMask( aspectMask_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AttachmentReference2KHR( AttachmentReference2KHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, attachment( rhs.attachment )
|
||||
, layout( rhs.layout )
|
||||
, aspectMask( rhs.aspectMask )
|
||||
{}
|
||||
|
||||
AttachmentReference2KHR & operator=( AttachmentReference2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( AttachmentReference2KHR ) - offsetof( AttachmentReference2KHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR( VkAttachmentReference2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR& operator=( VkAttachmentReference2KHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AttachmentReference2KHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR & setAttachment( uint32_t attachment_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
attachment = attachment_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR & setLayout( VULKAN_HPP_NAMESPACE::ImageLayout layout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layout = layout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentReference2KHR & setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
aspectMask = aspectMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAttachmentReference2KHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAttachmentReference2KHR*>( this );
|
||||
}
|
||||
|
||||
operator VkAttachmentReference2KHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAttachmentReference2KHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AttachmentReference2KHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( AttachmentReference2KHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( attachment == rhs.attachment )
|
||||
&& ( layout == rhs.layout )
|
||||
&& ( aspectMask == rhs.aspectMask );
|
||||
}
|
||||
|
||||
bool operator!=( AttachmentReference2KHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eAttachmentReference2KHR;
|
||||
const void* pNext = {};
|
||||
uint32_t attachment = {};
|
||||
VULKAN_HPP_NAMESPACE::ImageLayout layout = VULKAN_HPP_NAMESPACE::ImageLayout::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {};
|
||||
};
|
||||
static_assert( sizeof( AttachmentReference2KHR ) == sizeof( VkAttachmentReference2KHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AttachmentReference2KHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct Extent2D
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR Extent2D( uint32_t width_ = {},
|
||||
uint32_t height_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: width( width_ )
|
||||
, height( height_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR Extent2D( Extent2D const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: width( rhs.width )
|
||||
, height( rhs.height )
|
||||
{}
|
||||
|
||||
Extent2D & operator=( Extent2D const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( Extent2D ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
Extent2D( VkExtent2D const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
Extent2D& operator=( VkExtent2D const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::Extent2D const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
Extent2D & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
width = width_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
Extent2D & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
height = height_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExtent2D const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExtent2D*>( this );
|
||||
}
|
||||
|
||||
operator VkExtent2D &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExtent2D*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( Extent2D const& ) const = default;
|
||||
#else
|
||||
bool operator==( Extent2D const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( width == rhs.width )
|
||||
&& ( height == rhs.height );
|
||||
}
|
||||
|
||||
bool operator!=( Extent2D const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t width = {};
|
||||
uint32_t height = {};
|
||||
};
|
||||
static_assert( sizeof( Extent2D ) == sizeof( VkExtent2D ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<Extent2D>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct SampleLocationEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR SampleLocationEXT( float x_ = {},
|
||||
float y_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: x( x_ )
|
||||
, y( y_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR SampleLocationEXT( SampleLocationEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: x( rhs.x )
|
||||
, y( rhs.y )
|
||||
{}
|
||||
|
||||
SampleLocationEXT & operator=( SampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( SampleLocationEXT ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationEXT( VkSampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
SampleLocationEXT& operator=( VkSampleLocationEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::SampleLocationEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationEXT & setX( float x_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
x = x_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationEXT & setY( float y_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
y = y_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkSampleLocationEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkSampleLocationEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkSampleLocationEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkSampleLocationEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( SampleLocationEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( SampleLocationEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( x == rhs.x )
|
||||
&& ( y == rhs.y );
|
||||
}
|
||||
|
||||
bool operator!=( SampleLocationEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
float x = {};
|
||||
float y = {};
|
||||
};
|
||||
static_assert( sizeof( SampleLocationEXT ) == sizeof( VkSampleLocationEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<SampleLocationEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct SampleLocationsInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR SampleLocationsInfoEXT( VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1,
|
||||
VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize_ = {},
|
||||
uint32_t sampleLocationsCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::SampleLocationEXT* pSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: sampleLocationsPerPixel( sampleLocationsPerPixel_ )
|
||||
, sampleLocationGridSize( sampleLocationGridSize_ )
|
||||
, sampleLocationsCount( sampleLocationsCount_ )
|
||||
, pSampleLocations( pSampleLocations_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR SampleLocationsInfoEXT( SampleLocationsInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, sampleLocationsPerPixel( rhs.sampleLocationsPerPixel )
|
||||
, sampleLocationGridSize( rhs.sampleLocationGridSize )
|
||||
, sampleLocationsCount( rhs.sampleLocationsCount )
|
||||
, pSampleLocations( rhs.pSampleLocations )
|
||||
{}
|
||||
|
||||
SampleLocationsInfoEXT & operator=( SampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( SampleLocationsInfoEXT ) - offsetof( SampleLocationsInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT( VkSampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT& operator=( VkSampleLocationsInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT & setSampleLocationsPerPixel( VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleLocationsPerPixel = sampleLocationsPerPixel_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT & setSampleLocationGridSize( VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleLocationGridSize = sampleLocationGridSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT & setSampleLocationsCount( uint32_t sampleLocationsCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleLocationsCount = sampleLocationsCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SampleLocationsInfoEXT & setPSampleLocations( const VULKAN_HPP_NAMESPACE::SampleLocationEXT* pSampleLocations_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pSampleLocations = pSampleLocations_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkSampleLocationsInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkSampleLocationsInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkSampleLocationsInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkSampleLocationsInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( SampleLocationsInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( SampleLocationsInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( sampleLocationsPerPixel == rhs.sampleLocationsPerPixel )
|
||||
&& ( sampleLocationGridSize == rhs.sampleLocationGridSize )
|
||||
&& ( sampleLocationsCount == rhs.sampleLocationsCount )
|
||||
&& ( pSampleLocations == rhs.pSampleLocations );
|
||||
}
|
||||
|
||||
bool operator!=( SampleLocationsInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eSampleLocationsInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits sampleLocationsPerPixel = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1;
|
||||
VULKAN_HPP_NAMESPACE::Extent2D sampleLocationGridSize = {};
|
||||
uint32_t sampleLocationsCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::SampleLocationEXT* pSampleLocations = {};
|
||||
};
|
||||
static_assert( sizeof( SampleLocationsInfoEXT ) == sizeof( VkSampleLocationsInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<SampleLocationsInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct AttachmentSampleLocationsEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR AttachmentSampleLocationsEXT( uint32_t attachmentIndex_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: attachmentIndex( attachmentIndex_ )
|
||||
, sampleLocationsInfo( sampleLocationsInfo_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR AttachmentSampleLocationsEXT( AttachmentSampleLocationsEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: attachmentIndex( rhs.attachmentIndex )
|
||||
, sampleLocationsInfo( rhs.sampleLocationsInfo )
|
||||
{}
|
||||
|
||||
AttachmentSampleLocationsEXT & operator=( AttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( AttachmentSampleLocationsEXT ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentSampleLocationsEXT( VkAttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
AttachmentSampleLocationsEXT& operator=( VkAttachmentSampleLocationsEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::AttachmentSampleLocationsEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentSampleLocationsEXT & setAttachmentIndex( uint32_t attachmentIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
attachmentIndex = attachmentIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
AttachmentSampleLocationsEXT & setSampleLocationsInfo( VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleLocationsInfo = sampleLocationsInfo_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkAttachmentSampleLocationsEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkAttachmentSampleLocationsEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkAttachmentSampleLocationsEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkAttachmentSampleLocationsEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( AttachmentSampleLocationsEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( AttachmentSampleLocationsEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( attachmentIndex == rhs.attachmentIndex )
|
||||
&& ( sampleLocationsInfo == rhs.sampleLocationsInfo );
|
||||
}
|
||||
|
||||
bool operator!=( AttachmentSampleLocationsEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t attachmentIndex = {};
|
||||
VULKAN_HPP_NAMESPACE::SampleLocationsInfoEXT sampleLocationsInfo = {};
|
||||
};
|
||||
static_assert( sizeof( AttachmentSampleLocationsEXT ) == sizeof( VkAttachmentSampleLocationsEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<AttachmentSampleLocationsEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,174 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBase.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct BaseInStructure
|
||||
{
|
||||
BaseInStructure() VULKAN_HPP_NOEXCEPT
|
||||
{}
|
||||
|
||||
BaseInStructure( BaseInStructure const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
{}
|
||||
|
||||
BaseInStructure & operator=( BaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( BaseInStructure ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BaseInStructure( VkBaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BaseInStructure& operator=( VkBaseInStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BaseInStructure const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BaseInStructure & setPNext( const struct VULKAN_HPP_NAMESPACE::BaseInStructure* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBaseInStructure const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBaseInStructure*>( this );
|
||||
}
|
||||
|
||||
operator VkBaseInStructure &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBaseInStructure*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BaseInStructure const& ) const = default;
|
||||
#else
|
||||
bool operator==( BaseInStructure const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext );
|
||||
}
|
||||
|
||||
bool operator!=( BaseInStructure const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::StructureType sType = {};
|
||||
const struct VULKAN_HPP_NAMESPACE::BaseInStructure* pNext = {};
|
||||
};
|
||||
static_assert( sizeof( BaseInStructure ) == sizeof( VkBaseInStructure ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BaseInStructure>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BaseOutStructure
|
||||
{
|
||||
BaseOutStructure() VULKAN_HPP_NOEXCEPT
|
||||
{}
|
||||
|
||||
BaseOutStructure( BaseOutStructure const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
{}
|
||||
|
||||
BaseOutStructure & operator=( BaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( BaseOutStructure ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BaseOutStructure( VkBaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BaseOutStructure& operator=( VkBaseOutStructure const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BaseOutStructure const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BaseOutStructure & setPNext( struct VULKAN_HPP_NAMESPACE::BaseOutStructure* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBaseOutStructure const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBaseOutStructure*>( this );
|
||||
}
|
||||
|
||||
operator VkBaseOutStructure &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBaseOutStructure*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BaseOutStructure const& ) const = default;
|
||||
#else
|
||||
bool operator==( BaseOutStructure const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext );
|
||||
}
|
||||
|
||||
bool operator!=( BaseOutStructure const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::StructureType sType = {};
|
||||
struct VULKAN_HPP_NAMESPACE::BaseOutStructure* pNext = {};
|
||||
};
|
||||
static_assert( sizeof( BaseOutStructure ) == sizeof( VkBaseOutStructure ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BaseOutStructure>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,956 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct BufferCopy
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferCopy( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: srcOffset( srcOffset_ )
|
||||
, dstOffset( dstOffset_ )
|
||||
, size( size_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferCopy( BufferCopy const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: srcOffset( rhs.srcOffset )
|
||||
, dstOffset( rhs.dstOffset )
|
||||
, size( rhs.size )
|
||||
{}
|
||||
|
||||
BufferCopy & operator=( BufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( BufferCopy ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCopy( VkBufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferCopy& operator=( VkBufferCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferCopy const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCopy & setSrcOffset( VULKAN_HPP_NAMESPACE::DeviceSize srcOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcOffset = srcOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCopy & setDstOffset( VULKAN_HPP_NAMESPACE::DeviceSize dstOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstOffset = dstOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCopy & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
size = size_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferCopy const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferCopy*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferCopy &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferCopy*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferCopy const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferCopy const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( srcOffset == rhs.srcOffset )
|
||||
&& ( dstOffset == rhs.dstOffset )
|
||||
&& ( size == rhs.size );
|
||||
}
|
||||
|
||||
bool operator!=( BufferCopy const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize srcOffset = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize dstOffset = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size = {};
|
||||
};
|
||||
static_assert( sizeof( BufferCopy ) == sizeof( VkBufferCopy ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferCopy>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferCreateInfo( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size_ = {},
|
||||
VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive,
|
||||
uint32_t queueFamilyIndexCount_ = {},
|
||||
const uint32_t* pQueueFamilyIndices_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, size( size_ )
|
||||
, usage( usage_ )
|
||||
, sharingMode( sharingMode_ )
|
||||
, queueFamilyIndexCount( queueFamilyIndexCount_ )
|
||||
, pQueueFamilyIndices( pQueueFamilyIndices_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferCreateInfo( BufferCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, size( rhs.size )
|
||||
, usage( rhs.usage )
|
||||
, sharingMode( rhs.sharingMode )
|
||||
, queueFamilyIndexCount( rhs.queueFamilyIndexCount )
|
||||
, pQueueFamilyIndices( rhs.pQueueFamilyIndices )
|
||||
{}
|
||||
|
||||
BufferCreateInfo & operator=( BufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferCreateInfo ) - offsetof( BufferCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo( VkBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferCreateInfo& operator=( VkBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::BufferCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
size = size_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setUsage( VULKAN_HPP_NAMESPACE::BufferUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
usage = usage_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setSharingMode( VULKAN_HPP_NAMESPACE::SharingMode sharingMode_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sharingMode = sharingMode_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setQueueFamilyIndexCount( uint32_t queueFamilyIndexCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
queueFamilyIndexCount = queueFamilyIndexCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferCreateInfo & setPQueueFamilyIndices( const uint32_t* pQueueFamilyIndices_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pQueueFamilyIndices = pQueueFamilyIndices_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( size == rhs.size )
|
||||
&& ( usage == rhs.usage )
|
||||
&& ( sharingMode == rhs.sharingMode )
|
||||
&& ( queueFamilyIndexCount == rhs.queueFamilyIndexCount )
|
||||
&& ( pQueueFamilyIndices == rhs.pQueueFamilyIndices );
|
||||
}
|
||||
|
||||
bool operator!=( BufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::BufferCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size = {};
|
||||
VULKAN_HPP_NAMESPACE::BufferUsageFlags usage = {};
|
||||
VULKAN_HPP_NAMESPACE::SharingMode sharingMode = VULKAN_HPP_NAMESPACE::SharingMode::eExclusive;
|
||||
uint32_t queueFamilyIndexCount = {};
|
||||
const uint32_t* pQueueFamilyIndices = {};
|
||||
};
|
||||
static_assert( sizeof( BufferCreateInfo ) == sizeof( VkBufferCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferDeviceAddressCreateInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferDeviceAddressCreateInfoEXT( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: deviceAddress( deviceAddress_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferDeviceAddressCreateInfoEXT( BufferDeviceAddressCreateInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, deviceAddress( rhs.deviceAddress )
|
||||
{}
|
||||
|
||||
BufferDeviceAddressCreateInfoEXT & operator=( BufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferDeviceAddressCreateInfoEXT ) - offsetof( BufferDeviceAddressCreateInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressCreateInfoEXT( VkBufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferDeviceAddressCreateInfoEXT& operator=( VkBufferDeviceAddressCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferDeviceAddressCreateInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressCreateInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressCreateInfoEXT & setDeviceAddress( VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
deviceAddress = deviceAddress_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferDeviceAddressCreateInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferDeviceAddressCreateInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferDeviceAddressCreateInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferDeviceAddressCreateInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferDeviceAddressCreateInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferDeviceAddressCreateInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( deviceAddress == rhs.deviceAddress );
|
||||
}
|
||||
|
||||
bool operator!=( BufferDeviceAddressCreateInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferDeviceAddressCreateInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceAddress deviceAddress = {};
|
||||
};
|
||||
static_assert( sizeof( BufferDeviceAddressCreateInfoEXT ) == sizeof( VkBufferDeviceAddressCreateInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferDeviceAddressCreateInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferDeviceAddressInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferDeviceAddressInfoEXT( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: buffer( buffer_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferDeviceAddressInfoEXT( BufferDeviceAddressInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, buffer( rhs.buffer )
|
||||
{}
|
||||
|
||||
BufferDeviceAddressInfoEXT & operator=( BufferDeviceAddressInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferDeviceAddressInfoEXT ) - offsetof( BufferDeviceAddressInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressInfoEXT( VkBufferDeviceAddressInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferDeviceAddressInfoEXT& operator=( VkBufferDeviceAddressInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferDeviceAddressInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferDeviceAddressInfoEXT & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferDeviceAddressInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferDeviceAddressInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferDeviceAddressInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferDeviceAddressInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferDeviceAddressInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferDeviceAddressInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( buffer == rhs.buffer );
|
||||
}
|
||||
|
||||
bool operator!=( BufferDeviceAddressInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferDeviceAddressInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
};
|
||||
static_assert( sizeof( BufferDeviceAddressInfoEXT ) == sizeof( VkBufferDeviceAddressInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferDeviceAddressInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ImageSubresourceLayers
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImageSubresourceLayers( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {},
|
||||
uint32_t mipLevel_ = {},
|
||||
uint32_t baseArrayLayer_ = {},
|
||||
uint32_t layerCount_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: aspectMask( aspectMask_ )
|
||||
, mipLevel( mipLevel_ )
|
||||
, baseArrayLayer( baseArrayLayer_ )
|
||||
, layerCount( layerCount_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImageSubresourceLayers( ImageSubresourceLayers const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: aspectMask( rhs.aspectMask )
|
||||
, mipLevel( rhs.mipLevel )
|
||||
, baseArrayLayer( rhs.baseArrayLayer )
|
||||
, layerCount( rhs.layerCount )
|
||||
{}
|
||||
|
||||
ImageSubresourceLayers & operator=( ImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ImageSubresourceLayers ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers( VkImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers& operator=( VkImageSubresourceLayers const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImageSubresourceLayers const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers & setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
aspectMask = aspectMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers & setMipLevel( uint32_t mipLevel_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
mipLevel = mipLevel_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
baseArrayLayer = baseArrayLayer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageSubresourceLayers & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layerCount = layerCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImageSubresourceLayers const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImageSubresourceLayers*>( this );
|
||||
}
|
||||
|
||||
operator VkImageSubresourceLayers &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImageSubresourceLayers*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImageSubresourceLayers const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImageSubresourceLayers const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( aspectMask == rhs.aspectMask )
|
||||
&& ( mipLevel == rhs.mipLevel )
|
||||
&& ( baseArrayLayer == rhs.baseArrayLayer )
|
||||
&& ( layerCount == rhs.layerCount );
|
||||
}
|
||||
|
||||
bool operator!=( ImageSubresourceLayers const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {};
|
||||
uint32_t mipLevel = {};
|
||||
uint32_t baseArrayLayer = {};
|
||||
uint32_t layerCount = {};
|
||||
};
|
||||
static_assert( sizeof( ImageSubresourceLayers ) == sizeof( VkImageSubresourceLayers ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImageSubresourceLayers>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferImageCopy
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferImageCopy( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ = {},
|
||||
uint32_t bufferRowLength_ = {},
|
||||
uint32_t bufferImageHeight_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Offset3D imageOffset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Extent3D imageExtent_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: bufferOffset( bufferOffset_ )
|
||||
, bufferRowLength( bufferRowLength_ )
|
||||
, bufferImageHeight( bufferImageHeight_ )
|
||||
, imageSubresource( imageSubresource_ )
|
||||
, imageOffset( imageOffset_ )
|
||||
, imageExtent( imageExtent_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferImageCopy( BufferImageCopy const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: bufferOffset( rhs.bufferOffset )
|
||||
, bufferRowLength( rhs.bufferRowLength )
|
||||
, bufferImageHeight( rhs.bufferImageHeight )
|
||||
, imageSubresource( rhs.imageSubresource )
|
||||
, imageOffset( rhs.imageOffset )
|
||||
, imageExtent( rhs.imageExtent )
|
||||
{}
|
||||
|
||||
BufferImageCopy & operator=( BufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( BufferImageCopy ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy( VkBufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferImageCopy& operator=( VkBufferImageCopy const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferImageCopy const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setBufferOffset( VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
bufferOffset = bufferOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setBufferRowLength( uint32_t bufferRowLength_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
bufferRowLength = bufferRowLength_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setBufferImageHeight( uint32_t bufferImageHeight_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
bufferImageHeight = bufferImageHeight_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setImageSubresource( VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
imageSubresource = imageSubresource_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setImageOffset( VULKAN_HPP_NAMESPACE::Offset3D imageOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
imageOffset = imageOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferImageCopy & setImageExtent( VULKAN_HPP_NAMESPACE::Extent3D imageExtent_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
imageExtent = imageExtent_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferImageCopy const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferImageCopy*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferImageCopy &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferImageCopy*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferImageCopy const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferImageCopy const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( bufferOffset == rhs.bufferOffset )
|
||||
&& ( bufferRowLength == rhs.bufferRowLength )
|
||||
&& ( bufferImageHeight == rhs.bufferImageHeight )
|
||||
&& ( imageSubresource == rhs.imageSubresource )
|
||||
&& ( imageOffset == rhs.imageOffset )
|
||||
&& ( imageExtent == rhs.imageExtent );
|
||||
}
|
||||
|
||||
bool operator!=( BufferImageCopy const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize bufferOffset = {};
|
||||
uint32_t bufferRowLength = {};
|
||||
uint32_t bufferImageHeight = {};
|
||||
VULKAN_HPP_NAMESPACE::ImageSubresourceLayers imageSubresource = {};
|
||||
VULKAN_HPP_NAMESPACE::Offset3D imageOffset = {};
|
||||
VULKAN_HPP_NAMESPACE::Extent3D imageExtent = {};
|
||||
};
|
||||
static_assert( sizeof( BufferImageCopy ) == sizeof( VkBufferImageCopy ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferImageCopy>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferMemoryBarrier
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferMemoryBarrier( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ = {},
|
||||
VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ = {},
|
||||
uint32_t srcQueueFamilyIndex_ = {},
|
||||
uint32_t dstQueueFamilyIndex_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: srcAccessMask( srcAccessMask_ )
|
||||
, dstAccessMask( dstAccessMask_ )
|
||||
, srcQueueFamilyIndex( srcQueueFamilyIndex_ )
|
||||
, dstQueueFamilyIndex( dstQueueFamilyIndex_ )
|
||||
, buffer( buffer_ )
|
||||
, offset( offset_ )
|
||||
, size( size_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferMemoryBarrier( BufferMemoryBarrier const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, srcAccessMask( rhs.srcAccessMask )
|
||||
, dstAccessMask( rhs.dstAccessMask )
|
||||
, srcQueueFamilyIndex( rhs.srcQueueFamilyIndex )
|
||||
, dstQueueFamilyIndex( rhs.dstQueueFamilyIndex )
|
||||
, buffer( rhs.buffer )
|
||||
, offset( rhs.offset )
|
||||
, size( rhs.size )
|
||||
{}
|
||||
|
||||
BufferMemoryBarrier & operator=( BufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferMemoryBarrier ) - offsetof( BufferMemoryBarrier, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier( VkBufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier& operator=( VkBufferMemoryBarrier const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferMemoryBarrier const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setSrcAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcAccessMask = srcAccessMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setDstAccessMask( VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstAccessMask = dstAccessMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setSrcQueueFamilyIndex( uint32_t srcQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcQueueFamilyIndex = srcQueueFamilyIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setDstQueueFamilyIndex( uint32_t dstQueueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstQueueFamilyIndex = dstQueueFamilyIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryBarrier & setSize( VULKAN_HPP_NAMESPACE::DeviceSize size_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
size = size_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferMemoryBarrier const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferMemoryBarrier*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferMemoryBarrier &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferMemoryBarrier*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferMemoryBarrier const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferMemoryBarrier const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( srcAccessMask == rhs.srcAccessMask )
|
||||
&& ( dstAccessMask == rhs.dstAccessMask )
|
||||
&& ( srcQueueFamilyIndex == rhs.srcQueueFamilyIndex )
|
||||
&& ( dstQueueFamilyIndex == rhs.dstQueueFamilyIndex )
|
||||
&& ( buffer == rhs.buffer )
|
||||
&& ( offset == rhs.offset )
|
||||
&& ( size == rhs.size );
|
||||
}
|
||||
|
||||
bool operator!=( BufferMemoryBarrier const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferMemoryBarrier;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::AccessFlags srcAccessMask = {};
|
||||
VULKAN_HPP_NAMESPACE::AccessFlags dstAccessMask = {};
|
||||
uint32_t srcQueueFamilyIndex = {};
|
||||
uint32_t dstQueueFamilyIndex = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize size = {};
|
||||
};
|
||||
static_assert( sizeof( BufferMemoryBarrier ) == sizeof( VkBufferMemoryBarrier ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferMemoryBarrier>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferMemoryRequirementsInfo2
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferMemoryRequirementsInfo2( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: buffer( buffer_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferMemoryRequirementsInfo2( BufferMemoryRequirementsInfo2 const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, buffer( rhs.buffer )
|
||||
{}
|
||||
|
||||
BufferMemoryRequirementsInfo2 & operator=( BufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferMemoryRequirementsInfo2 ) - offsetof( BufferMemoryRequirementsInfo2, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryRequirementsInfo2( VkBufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferMemoryRequirementsInfo2& operator=( VkBufferMemoryRequirementsInfo2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferMemoryRequirementsInfo2 const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryRequirementsInfo2 & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferMemoryRequirementsInfo2 & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferMemoryRequirementsInfo2 const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferMemoryRequirementsInfo2*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferMemoryRequirementsInfo2 &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferMemoryRequirementsInfo2*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferMemoryRequirementsInfo2 const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferMemoryRequirementsInfo2 const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( buffer == rhs.buffer );
|
||||
}
|
||||
|
||||
bool operator!=( BufferMemoryRequirementsInfo2 const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferMemoryRequirementsInfo2;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
};
|
||||
static_assert( sizeof( BufferMemoryRequirementsInfo2 ) == sizeof( VkBufferMemoryRequirementsInfo2 ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferMemoryRequirementsInfo2>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct BufferViewCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR BufferViewCreateInfo( VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Format format_ = VULKAN_HPP_NAMESPACE::Format::eUndefined,
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize range_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, buffer( buffer_ )
|
||||
, format( format_ )
|
||||
, offset( offset_ )
|
||||
, range( range_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR BufferViewCreateInfo( BufferViewCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, buffer( rhs.buffer )
|
||||
, format( rhs.format )
|
||||
, offset( rhs.offset )
|
||||
, range( rhs.range )
|
||||
{}
|
||||
|
||||
BufferViewCreateInfo & operator=( BufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( BufferViewCreateInfo ) - offsetof( BufferViewCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo( VkBufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo& operator=( VkBufferViewCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::BufferViewCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setFormat( VULKAN_HPP_NAMESPACE::Format format_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
format = format_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
BufferViewCreateInfo & setRange( VULKAN_HPP_NAMESPACE::DeviceSize range_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
range = range_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkBufferViewCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkBufferViewCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkBufferViewCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkBufferViewCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( BufferViewCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( BufferViewCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( buffer == rhs.buffer )
|
||||
&& ( format == rhs.format )
|
||||
&& ( offset == rhs.offset )
|
||||
&& ( range == rhs.range );
|
||||
}
|
||||
|
||||
bool operator!=( BufferViewCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eBufferViewCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::BufferViewCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
VULKAN_HPP_NAMESPACE::Format format = VULKAN_HPP_NAMESPACE::Format::eUndefined;
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize range = {};
|
||||
};
|
||||
static_assert( sizeof( BufferViewCreateInfo ) == sizeof( VkBufferViewCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<BufferViewCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,122 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CalibratedTimestampInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CalibratedTimestampInfoEXT( VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain_ = VULKAN_HPP_NAMESPACE::TimeDomainEXT::eDevice ) VULKAN_HPP_NOEXCEPT
|
||||
: timeDomain( timeDomain_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CalibratedTimestampInfoEXT( CalibratedTimestampInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, timeDomain( rhs.timeDomain )
|
||||
{}
|
||||
|
||||
CalibratedTimestampInfoEXT & operator=( CalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CalibratedTimestampInfoEXT ) - offsetof( CalibratedTimestampInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CalibratedTimestampInfoEXT( VkCalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CalibratedTimestampInfoEXT& operator=( VkCalibratedTimestampInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CalibratedTimestampInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CalibratedTimestampInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CalibratedTimestampInfoEXT & setTimeDomain( VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
timeDomain = timeDomain_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCalibratedTimestampInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCalibratedTimestampInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkCalibratedTimestampInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCalibratedTimestampInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CalibratedTimestampInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( CalibratedTimestampInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( timeDomain == rhs.timeDomain );
|
||||
}
|
||||
|
||||
bool operator!=( CalibratedTimestampInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCalibratedTimestampInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::TimeDomainEXT timeDomain = VULKAN_HPP_NAMESPACE::TimeDomainEXT::eDevice;
|
||||
};
|
||||
static_assert( sizeof( CalibratedTimestampInfoEXT ) == sizeof( VkCalibratedTimestampInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CalibratedTimestampInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,116 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CheckpointDataNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CheckpointDataNV( VULKAN_HPP_NAMESPACE::PipelineStageFlagBits stage_ = VULKAN_HPP_NAMESPACE::PipelineStageFlagBits::eTopOfPipe,
|
||||
void* pCheckpointMarker_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: stage( stage_ )
|
||||
, pCheckpointMarker( pCheckpointMarker_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CheckpointDataNV( CheckpointDataNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, stage( rhs.stage )
|
||||
, pCheckpointMarker( rhs.pCheckpointMarker )
|
||||
{}
|
||||
|
||||
CheckpointDataNV & operator=( CheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CheckpointDataNV ) - offsetof( CheckpointDataNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CheckpointDataNV( VkCheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CheckpointDataNV& operator=( VkCheckpointDataNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CheckpointDataNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCheckpointDataNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCheckpointDataNV*>( this );
|
||||
}
|
||||
|
||||
operator VkCheckpointDataNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCheckpointDataNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CheckpointDataNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( CheckpointDataNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( stage == rhs.stage )
|
||||
&& ( pCheckpointMarker == rhs.pCheckpointMarker );
|
||||
}
|
||||
|
||||
bool operator!=( CheckpointDataNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCheckpointDataNV;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineStageFlagBits stage = VULKAN_HPP_NAMESPACE::PipelineStageFlagBits::eTopOfPipe;
|
||||
void* pCheckpointMarker = {};
|
||||
};
|
||||
static_assert( sizeof( CheckpointDataNV ) == sizeof( VkCheckpointDataNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CheckpointDataNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,394 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
union ClearColorValue
|
||||
{
|
||||
ClearColorValue( VULKAN_HPP_NAMESPACE::ClearColorValue const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( VULKAN_HPP_NAMESPACE::ClearColorValue ) );
|
||||
}
|
||||
|
||||
ClearColorValue( const std::array<float,4>& float32_ = {} )
|
||||
{
|
||||
memcpy( float32, float32_.data(), 4 * sizeof( float ) );
|
||||
}
|
||||
|
||||
ClearColorValue( const std::array<int32_t,4>& int32_ )
|
||||
{
|
||||
memcpy( int32, int32_.data(), 4 * sizeof( int32_t ) );
|
||||
}
|
||||
|
||||
ClearColorValue( const std::array<uint32_t,4>& uint32_ )
|
||||
{
|
||||
memcpy( uint32, uint32_.data(), 4 * sizeof( uint32_t ) );
|
||||
}
|
||||
|
||||
ClearColorValue & setFloat32( std::array<float,4> float32_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( float32, float32_.data(), 4 * sizeof( float ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearColorValue & setInt32( std::array<int32_t,4> int32_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( int32, int32_.data(), 4 * sizeof( int32_t ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearColorValue & setUint32( std::array<uint32_t,4> uint32_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( uint32, uint32_.data(), 4 * sizeof( uint32_t ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
VULKAN_HPP_NAMESPACE::ClearColorValue & operator=( VULKAN_HPP_NAMESPACE::ClearColorValue const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( VULKAN_HPP_NAMESPACE::ClearColorValue ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkClearColorValue const&() const
|
||||
{
|
||||
return *reinterpret_cast<const VkClearColorValue*>(this);
|
||||
}
|
||||
|
||||
operator VkClearColorValue &()
|
||||
{
|
||||
return *reinterpret_cast<VkClearColorValue*>(this);
|
||||
}
|
||||
|
||||
float float32[4];
|
||||
int32_t int32[4];
|
||||
uint32_t uint32[4];
|
||||
};
|
||||
|
||||
struct ClearDepthStencilValue
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ClearDepthStencilValue( float depth_ = {},
|
||||
uint32_t stencil_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: depth( depth_ )
|
||||
, stencil( stencil_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ClearDepthStencilValue( ClearDepthStencilValue const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: depth( rhs.depth )
|
||||
, stencil( rhs.stencil )
|
||||
{}
|
||||
|
||||
ClearDepthStencilValue & operator=( ClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ClearDepthStencilValue ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearDepthStencilValue( VkClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ClearDepthStencilValue& operator=( VkClearDepthStencilValue const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ClearDepthStencilValue const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearDepthStencilValue & setDepth( float depth_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
depth = depth_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearDepthStencilValue & setStencil( uint32_t stencil_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stencil = stencil_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkClearDepthStencilValue const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkClearDepthStencilValue*>( this );
|
||||
}
|
||||
|
||||
operator VkClearDepthStencilValue &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkClearDepthStencilValue*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ClearDepthStencilValue const& ) const = default;
|
||||
#else
|
||||
bool operator==( ClearDepthStencilValue const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( depth == rhs.depth )
|
||||
&& ( stencil == rhs.stencil );
|
||||
}
|
||||
|
||||
bool operator!=( ClearDepthStencilValue const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
float depth = {};
|
||||
uint32_t stencil = {};
|
||||
};
|
||||
static_assert( sizeof( ClearDepthStencilValue ) == sizeof( VkClearDepthStencilValue ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ClearDepthStencilValue>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
union ClearValue
|
||||
{
|
||||
ClearValue( VULKAN_HPP_NAMESPACE::ClearValue const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( VULKAN_HPP_NAMESPACE::ClearValue ) );
|
||||
}
|
||||
|
||||
ClearValue( VULKAN_HPP_NAMESPACE::ClearColorValue color_ = {} )
|
||||
{
|
||||
color = color_;
|
||||
}
|
||||
|
||||
ClearValue( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue depthStencil_ )
|
||||
{
|
||||
depthStencil = depthStencil_;
|
||||
}
|
||||
|
||||
ClearValue & setColor( VULKAN_HPP_NAMESPACE::ClearColorValue color_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
color = color_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearValue & setDepthStencil( VULKAN_HPP_NAMESPACE::ClearDepthStencilValue depthStencil_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
depthStencil = depthStencil_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
VULKAN_HPP_NAMESPACE::ClearValue & operator=( VULKAN_HPP_NAMESPACE::ClearValue const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( VULKAN_HPP_NAMESPACE::ClearValue ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkClearValue const&() const
|
||||
{
|
||||
return *reinterpret_cast<const VkClearValue*>(this);
|
||||
}
|
||||
|
||||
operator VkClearValue &()
|
||||
{
|
||||
return *reinterpret_cast<VkClearValue*>(this);
|
||||
}
|
||||
|
||||
#ifdef VULKAN_HPP_HAS_UNRESTRICTED_UNIONS
|
||||
VULKAN_HPP_NAMESPACE::ClearColorValue color;
|
||||
VULKAN_HPP_NAMESPACE::ClearDepthStencilValue depthStencil;
|
||||
#else
|
||||
VkClearColorValue color;
|
||||
VkClearDepthStencilValue depthStencil;
|
||||
#endif /*VULKAN_HPP_HAS_UNRESTRICTED_UNIONS*/
|
||||
};
|
||||
|
||||
struct ClearAttachment
|
||||
{
|
||||
ClearAttachment( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ = {},
|
||||
uint32_t colorAttachment_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ClearValue clearValue_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: aspectMask( aspectMask_ )
|
||||
, colorAttachment( colorAttachment_ )
|
||||
, clearValue( clearValue_ )
|
||||
{}
|
||||
|
||||
ClearAttachment( ClearAttachment const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: aspectMask( rhs.aspectMask )
|
||||
, colorAttachment( rhs.colorAttachment )
|
||||
, clearValue( rhs.clearValue )
|
||||
{}
|
||||
|
||||
ClearAttachment & operator=( ClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ClearAttachment ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearAttachment( VkClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ClearAttachment& operator=( VkClearAttachment const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ClearAttachment const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearAttachment & setAspectMask( VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
aspectMask = aspectMask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearAttachment & setColorAttachment( uint32_t colorAttachment_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
colorAttachment = colorAttachment_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearAttachment & setClearValue( VULKAN_HPP_NAMESPACE::ClearValue clearValue_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
clearValue = clearValue_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkClearAttachment const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkClearAttachment*>( this );
|
||||
}
|
||||
|
||||
operator VkClearAttachment &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkClearAttachment*>( this );
|
||||
}
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ImageAspectFlags aspectMask = {};
|
||||
uint32_t colorAttachment = {};
|
||||
VULKAN_HPP_NAMESPACE::ClearValue clearValue = {};
|
||||
};
|
||||
static_assert( sizeof( ClearAttachment ) == sizeof( VkClearAttachment ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ClearAttachment>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ClearRect
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ClearRect( VULKAN_HPP_NAMESPACE::Rect2D rect_ = {},
|
||||
uint32_t baseArrayLayer_ = {},
|
||||
uint32_t layerCount_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: rect( rect_ )
|
||||
, baseArrayLayer( baseArrayLayer_ )
|
||||
, layerCount( layerCount_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ClearRect( ClearRect const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: rect( rhs.rect )
|
||||
, baseArrayLayer( rhs.baseArrayLayer )
|
||||
, layerCount( rhs.layerCount )
|
||||
{}
|
||||
|
||||
ClearRect & operator=( ClearRect const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ClearRect ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearRect( VkClearRect const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ClearRect& operator=( VkClearRect const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ClearRect const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearRect & setRect( VULKAN_HPP_NAMESPACE::Rect2D rect_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
rect = rect_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearRect & setBaseArrayLayer( uint32_t baseArrayLayer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
baseArrayLayer = baseArrayLayer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ClearRect & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layerCount = layerCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkClearRect const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkClearRect*>( this );
|
||||
}
|
||||
|
||||
operator VkClearRect &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkClearRect*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ClearRect const& ) const = default;
|
||||
#else
|
||||
bool operator==( ClearRect const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( rect == rhs.rect )
|
||||
&& ( baseArrayLayer == rhs.baseArrayLayer )
|
||||
&& ( layerCount == rhs.layerCount );
|
||||
}
|
||||
|
||||
bool operator!=( ClearRect const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::Rect2D rect = {};
|
||||
uint32_t baseArrayLayer = {};
|
||||
uint32_t layerCount = {};
|
||||
};
|
||||
static_assert( sizeof( ClearRect ) == sizeof( VkClearRect ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ClearRect>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,406 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct IndirectCommandsTokenNVX
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsTokenNVX( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType_ = VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX::ePipeline,
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: tokenType( tokenType_ )
|
||||
, buffer( buffer_ )
|
||||
, offset( offset_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsTokenNVX( IndirectCommandsTokenNVX const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: tokenType( rhs.tokenType )
|
||||
, buffer( rhs.buffer )
|
||||
, offset( rhs.offset )
|
||||
{}
|
||||
|
||||
IndirectCommandsTokenNVX & operator=( IndirectCommandsTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( IndirectCommandsTokenNVX ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsTokenNVX( VkIndirectCommandsTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
IndirectCommandsTokenNVX& operator=( VkIndirectCommandsTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::IndirectCommandsTokenNVX const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsTokenNVX & setTokenType( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
tokenType = tokenType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsTokenNVX & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsTokenNVX & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsTokenNVX const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkIndirectCommandsTokenNVX*>( this );
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsTokenNVX &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkIndirectCommandsTokenNVX*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( IndirectCommandsTokenNVX const& ) const = default;
|
||||
#else
|
||||
bool operator==( IndirectCommandsTokenNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( tokenType == rhs.tokenType )
|
||||
&& ( buffer == rhs.buffer )
|
||||
&& ( offset == rhs.offset );
|
||||
}
|
||||
|
||||
bool operator!=( IndirectCommandsTokenNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType = VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX::ePipeline;
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset = {};
|
||||
};
|
||||
static_assert( sizeof( IndirectCommandsTokenNVX ) == sizeof( VkIndirectCommandsTokenNVX ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<IndirectCommandsTokenNVX>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CmdProcessCommandsInfoNVX
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CmdProcessCommandsInfoNVX( VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable_ = {},
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout_ = {},
|
||||
uint32_t indirectCommandsTokenCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::IndirectCommandsTokenNVX* pIndirectCommandsTokens_ = {},
|
||||
uint32_t maxSequencesCount_ = {},
|
||||
VULKAN_HPP_NAMESPACE::CommandBuffer targetCommandBuffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: objectTable( objectTable_ )
|
||||
, indirectCommandsLayout( indirectCommandsLayout_ )
|
||||
, indirectCommandsTokenCount( indirectCommandsTokenCount_ )
|
||||
, pIndirectCommandsTokens( pIndirectCommandsTokens_ )
|
||||
, maxSequencesCount( maxSequencesCount_ )
|
||||
, targetCommandBuffer( targetCommandBuffer_ )
|
||||
, sequencesCountBuffer( sequencesCountBuffer_ )
|
||||
, sequencesCountOffset( sequencesCountOffset_ )
|
||||
, sequencesIndexBuffer( sequencesIndexBuffer_ )
|
||||
, sequencesIndexOffset( sequencesIndexOffset_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CmdProcessCommandsInfoNVX( CmdProcessCommandsInfoNVX const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, objectTable( rhs.objectTable )
|
||||
, indirectCommandsLayout( rhs.indirectCommandsLayout )
|
||||
, indirectCommandsTokenCount( rhs.indirectCommandsTokenCount )
|
||||
, pIndirectCommandsTokens( rhs.pIndirectCommandsTokens )
|
||||
, maxSequencesCount( rhs.maxSequencesCount )
|
||||
, targetCommandBuffer( rhs.targetCommandBuffer )
|
||||
, sequencesCountBuffer( rhs.sequencesCountBuffer )
|
||||
, sequencesCountOffset( rhs.sequencesCountOffset )
|
||||
, sequencesIndexBuffer( rhs.sequencesIndexBuffer )
|
||||
, sequencesIndexOffset( rhs.sequencesIndexOffset )
|
||||
{}
|
||||
|
||||
CmdProcessCommandsInfoNVX & operator=( CmdProcessCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CmdProcessCommandsInfoNVX ) - offsetof( CmdProcessCommandsInfoNVX, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX( VkCmdProcessCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX& operator=( VkCmdProcessCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CmdProcessCommandsInfoNVX const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setObjectTable( VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
objectTable = objectTable_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setIndirectCommandsLayout( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indirectCommandsLayout = indirectCommandsLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setIndirectCommandsTokenCount( uint32_t indirectCommandsTokenCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indirectCommandsTokenCount = indirectCommandsTokenCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setPIndirectCommandsTokens( const VULKAN_HPP_NAMESPACE::IndirectCommandsTokenNVX* pIndirectCommandsTokens_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pIndirectCommandsTokens = pIndirectCommandsTokens_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setMaxSequencesCount( uint32_t maxSequencesCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
maxSequencesCount = maxSequencesCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setTargetCommandBuffer( VULKAN_HPP_NAMESPACE::CommandBuffer targetCommandBuffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
targetCommandBuffer = targetCommandBuffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setSequencesCountBuffer( VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sequencesCountBuffer = sequencesCountBuffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setSequencesCountOffset( VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sequencesCountOffset = sequencesCountOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setSequencesIndexBuffer( VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sequencesIndexBuffer = sequencesIndexBuffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdProcessCommandsInfoNVX & setSequencesIndexOffset( VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sequencesIndexOffset = sequencesIndexOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCmdProcessCommandsInfoNVX const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCmdProcessCommandsInfoNVX*>( this );
|
||||
}
|
||||
|
||||
operator VkCmdProcessCommandsInfoNVX &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCmdProcessCommandsInfoNVX*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CmdProcessCommandsInfoNVX const& ) const = default;
|
||||
#else
|
||||
bool operator==( CmdProcessCommandsInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( objectTable == rhs.objectTable )
|
||||
&& ( indirectCommandsLayout == rhs.indirectCommandsLayout )
|
||||
&& ( indirectCommandsTokenCount == rhs.indirectCommandsTokenCount )
|
||||
&& ( pIndirectCommandsTokens == rhs.pIndirectCommandsTokens )
|
||||
&& ( maxSequencesCount == rhs.maxSequencesCount )
|
||||
&& ( targetCommandBuffer == rhs.targetCommandBuffer )
|
||||
&& ( sequencesCountBuffer == rhs.sequencesCountBuffer )
|
||||
&& ( sequencesCountOffset == rhs.sequencesCountOffset )
|
||||
&& ( sequencesIndexBuffer == rhs.sequencesIndexBuffer )
|
||||
&& ( sequencesIndexOffset == rhs.sequencesIndexOffset );
|
||||
}
|
||||
|
||||
bool operator!=( CmdProcessCommandsInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCmdProcessCommandsInfoNVX;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable = {};
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout = {};
|
||||
uint32_t indirectCommandsTokenCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::IndirectCommandsTokenNVX* pIndirectCommandsTokens = {};
|
||||
uint32_t maxSequencesCount = {};
|
||||
VULKAN_HPP_NAMESPACE::CommandBuffer targetCommandBuffer = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer sequencesCountBuffer = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize sequencesCountOffset = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer sequencesIndexBuffer = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize sequencesIndexOffset = {};
|
||||
};
|
||||
static_assert( sizeof( CmdProcessCommandsInfoNVX ) == sizeof( VkCmdProcessCommandsInfoNVX ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CmdProcessCommandsInfoNVX>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CmdReserveSpaceForCommandsInfoNVX
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CmdReserveSpaceForCommandsInfoNVX( VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable_ = {},
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout_ = {},
|
||||
uint32_t maxSequencesCount_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: objectTable( objectTable_ )
|
||||
, indirectCommandsLayout( indirectCommandsLayout_ )
|
||||
, maxSequencesCount( maxSequencesCount_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CmdReserveSpaceForCommandsInfoNVX( CmdReserveSpaceForCommandsInfoNVX const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, objectTable( rhs.objectTable )
|
||||
, indirectCommandsLayout( rhs.indirectCommandsLayout )
|
||||
, maxSequencesCount( rhs.maxSequencesCount )
|
||||
{}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX & operator=( CmdReserveSpaceForCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CmdReserveSpaceForCommandsInfoNVX ) - offsetof( CmdReserveSpaceForCommandsInfoNVX, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX( VkCmdReserveSpaceForCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX& operator=( VkCmdReserveSpaceForCommandsInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CmdReserveSpaceForCommandsInfoNVX const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX & setObjectTable( VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
objectTable = objectTable_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX & setIndirectCommandsLayout( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indirectCommandsLayout = indirectCommandsLayout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CmdReserveSpaceForCommandsInfoNVX & setMaxSequencesCount( uint32_t maxSequencesCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
maxSequencesCount = maxSequencesCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCmdReserveSpaceForCommandsInfoNVX const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCmdReserveSpaceForCommandsInfoNVX*>( this );
|
||||
}
|
||||
|
||||
operator VkCmdReserveSpaceForCommandsInfoNVX &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCmdReserveSpaceForCommandsInfoNVX*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CmdReserveSpaceForCommandsInfoNVX const& ) const = default;
|
||||
#else
|
||||
bool operator==( CmdReserveSpaceForCommandsInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( objectTable == rhs.objectTable )
|
||||
&& ( indirectCommandsLayout == rhs.indirectCommandsLayout )
|
||||
&& ( maxSequencesCount == rhs.maxSequencesCount );
|
||||
}
|
||||
|
||||
bool operator!=( CmdReserveSpaceForCommandsInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCmdReserveSpaceForCommandsInfoNVX;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ObjectTableNVX objectTable = {};
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutNVX indirectCommandsLayout = {};
|
||||
uint32_t maxSequencesCount = {};
|
||||
};
|
||||
static_assert( sizeof( CmdReserveSpaceForCommandsInfoNVX ) == sizeof( VkCmdReserveSpaceForCommandsInfoNVX ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CmdReserveSpaceForCommandsInfoNVX>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,234 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CoarseSampleLocationNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CoarseSampleLocationNV( uint32_t pixelX_ = {},
|
||||
uint32_t pixelY_ = {},
|
||||
uint32_t sample_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pixelX( pixelX_ )
|
||||
, pixelY( pixelY_ )
|
||||
, sample( sample_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CoarseSampleLocationNV( CoarseSampleLocationNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pixelX( rhs.pixelX )
|
||||
, pixelY( rhs.pixelY )
|
||||
, sample( rhs.sample )
|
||||
{}
|
||||
|
||||
CoarseSampleLocationNV & operator=( CoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( CoarseSampleLocationNV ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleLocationNV( VkCoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CoarseSampleLocationNV& operator=( VkCoarseSampleLocationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleLocationNV & setPixelX( uint32_t pixelX_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pixelX = pixelX_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleLocationNV & setPixelY( uint32_t pixelY_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pixelY = pixelY_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleLocationNV & setSample( uint32_t sample_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sample = sample_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCoarseSampleLocationNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCoarseSampleLocationNV*>( this );
|
||||
}
|
||||
|
||||
operator VkCoarseSampleLocationNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCoarseSampleLocationNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CoarseSampleLocationNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( CoarseSampleLocationNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( pixelX == rhs.pixelX )
|
||||
&& ( pixelY == rhs.pixelY )
|
||||
&& ( sample == rhs.sample );
|
||||
}
|
||||
|
||||
bool operator!=( CoarseSampleLocationNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t pixelX = {};
|
||||
uint32_t pixelY = {};
|
||||
uint32_t sample = {};
|
||||
};
|
||||
static_assert( sizeof( CoarseSampleLocationNV ) == sizeof( VkCoarseSampleLocationNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CoarseSampleLocationNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CoarseSampleOrderCustomNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CoarseSampleOrderCustomNV( VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate_ = VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV::eNoInvocations,
|
||||
uint32_t sampleCount_ = {},
|
||||
uint32_t sampleLocationCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV* pSampleLocations_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: shadingRate( shadingRate_ )
|
||||
, sampleCount( sampleCount_ )
|
||||
, sampleLocationCount( sampleLocationCount_ )
|
||||
, pSampleLocations( pSampleLocations_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CoarseSampleOrderCustomNV( CoarseSampleOrderCustomNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: shadingRate( rhs.shadingRate )
|
||||
, sampleCount( rhs.sampleCount )
|
||||
, sampleLocationCount( rhs.sampleLocationCount )
|
||||
, pSampleLocations( rhs.pSampleLocations )
|
||||
{}
|
||||
|
||||
CoarseSampleOrderCustomNV & operator=( CoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( CoarseSampleOrderCustomNV ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV( VkCoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV& operator=( VkCoarseSampleOrderCustomNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CoarseSampleOrderCustomNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV & setShadingRate( VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
shadingRate = shadingRate_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV & setSampleCount( uint32_t sampleCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleCount = sampleCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV & setSampleLocationCount( uint32_t sampleLocationCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
sampleLocationCount = sampleLocationCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CoarseSampleOrderCustomNV & setPSampleLocations( const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV* pSampleLocations_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pSampleLocations = pSampleLocations_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCoarseSampleOrderCustomNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCoarseSampleOrderCustomNV*>( this );
|
||||
}
|
||||
|
||||
operator VkCoarseSampleOrderCustomNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCoarseSampleOrderCustomNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CoarseSampleOrderCustomNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( CoarseSampleOrderCustomNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( shadingRate == rhs.shadingRate )
|
||||
&& ( sampleCount == rhs.sampleCount )
|
||||
&& ( sampleLocationCount == rhs.sampleLocationCount )
|
||||
&& ( pSampleLocations == rhs.pSampleLocations );
|
||||
}
|
||||
|
||||
bool operator!=( CoarseSampleOrderCustomNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV shadingRate = VULKAN_HPP_NAMESPACE::ShadingRatePaletteEntryNV::eNoInvocations;
|
||||
uint32_t sampleCount = {};
|
||||
uint32_t sampleLocationCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::CoarseSampleLocationNV* pSampleLocations = {};
|
||||
};
|
||||
static_assert( sizeof( CoarseSampleOrderCustomNV ) == sizeof( VkCoarseSampleOrderCustomNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CoarseSampleOrderCustomNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,523 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CommandBufferAllocateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferAllocateInfo( VULKAN_HPP_NAMESPACE::CommandPool commandPool_ = {},
|
||||
VULKAN_HPP_NAMESPACE::CommandBufferLevel level_ = VULKAN_HPP_NAMESPACE::CommandBufferLevel::ePrimary,
|
||||
uint32_t commandBufferCount_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: commandPool( commandPool_ )
|
||||
, level( level_ )
|
||||
, commandBufferCount( commandBufferCount_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferAllocateInfo( CommandBufferAllocateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, commandPool( rhs.commandPool )
|
||||
, level( rhs.level )
|
||||
, commandBufferCount( rhs.commandBufferCount )
|
||||
{}
|
||||
|
||||
CommandBufferAllocateInfo & operator=( CommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CommandBufferAllocateInfo ) - offsetof( CommandBufferAllocateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo( VkCommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo& operator=( VkCommandBufferAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferAllocateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo & setCommandPool( VULKAN_HPP_NAMESPACE::CommandPool commandPool_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
commandPool = commandPool_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo & setLevel( VULKAN_HPP_NAMESPACE::CommandBufferLevel level_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
level = level_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferAllocateInfo & setCommandBufferCount( uint32_t commandBufferCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
commandBufferCount = commandBufferCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCommandBufferAllocateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCommandBufferAllocateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkCommandBufferAllocateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCommandBufferAllocateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CommandBufferAllocateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( CommandBufferAllocateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( commandPool == rhs.commandPool )
|
||||
&& ( level == rhs.level )
|
||||
&& ( commandBufferCount == rhs.commandBufferCount );
|
||||
}
|
||||
|
||||
bool operator!=( CommandBufferAllocateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferAllocateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::CommandPool commandPool = {};
|
||||
VULKAN_HPP_NAMESPACE::CommandBufferLevel level = VULKAN_HPP_NAMESPACE::CommandBufferLevel::ePrimary;
|
||||
uint32_t commandBufferCount = {};
|
||||
};
|
||||
static_assert( sizeof( CommandBufferAllocateInfo ) == sizeof( VkCommandBufferAllocateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CommandBufferAllocateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CommandBufferInheritanceInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {},
|
||||
uint32_t subpass_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable_ = {},
|
||||
VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: renderPass( renderPass_ )
|
||||
, subpass( subpass_ )
|
||||
, framebuffer( framebuffer_ )
|
||||
, occlusionQueryEnable( occlusionQueryEnable_ )
|
||||
, queryFlags( queryFlags_ )
|
||||
, pipelineStatistics( pipelineStatistics_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferInheritanceInfo( CommandBufferInheritanceInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, renderPass( rhs.renderPass )
|
||||
, subpass( rhs.subpass )
|
||||
, framebuffer( rhs.framebuffer )
|
||||
, occlusionQueryEnable( rhs.occlusionQueryEnable )
|
||||
, queryFlags( rhs.queryFlags )
|
||||
, pipelineStatistics( rhs.pipelineStatistics )
|
||||
{}
|
||||
|
||||
CommandBufferInheritanceInfo & operator=( CommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CommandBufferInheritanceInfo ) - offsetof( CommandBufferInheritanceInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo& operator=( VkCommandBufferInheritanceInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
renderPass = renderPass_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setSubpass( uint32_t subpass_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
subpass = subpass_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setFramebuffer( VULKAN_HPP_NAMESPACE::Framebuffer framebuffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
framebuffer = framebuffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setOcclusionQueryEnable( VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
occlusionQueryEnable = occlusionQueryEnable_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setQueryFlags( VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
queryFlags = queryFlags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceInfo & setPipelineStatistics( VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pipelineStatistics = pipelineStatistics_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCommandBufferInheritanceInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCommandBufferInheritanceInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkCommandBufferInheritanceInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCommandBufferInheritanceInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CommandBufferInheritanceInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( CommandBufferInheritanceInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( renderPass == rhs.renderPass )
|
||||
&& ( subpass == rhs.subpass )
|
||||
&& ( framebuffer == rhs.framebuffer )
|
||||
&& ( occlusionQueryEnable == rhs.occlusionQueryEnable )
|
||||
&& ( queryFlags == rhs.queryFlags )
|
||||
&& ( pipelineStatistics == rhs.pipelineStatistics );
|
||||
}
|
||||
|
||||
bool operator!=( CommandBufferInheritanceInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::RenderPass renderPass = {};
|
||||
uint32_t subpass = {};
|
||||
VULKAN_HPP_NAMESPACE::Framebuffer framebuffer = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 occlusionQueryEnable = {};
|
||||
VULKAN_HPP_NAMESPACE::QueryControlFlags queryFlags = {};
|
||||
VULKAN_HPP_NAMESPACE::QueryPipelineStatisticFlags pipelineStatistics = {};
|
||||
};
|
||||
static_assert( sizeof( CommandBufferInheritanceInfo ) == sizeof( VkCommandBufferInheritanceInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CommandBufferInheritanceInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CommandBufferBeginInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferBeginInfo( VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo* pInheritanceInfo_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, pInheritanceInfo( pInheritanceInfo_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferBeginInfo( CommandBufferBeginInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, pInheritanceInfo( rhs.pInheritanceInfo )
|
||||
{}
|
||||
|
||||
CommandBufferBeginInfo & operator=( CommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CommandBufferBeginInfo ) - offsetof( CommandBufferBeginInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferBeginInfo( VkCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CommandBufferBeginInfo& operator=( VkCommandBufferBeginInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferBeginInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferBeginInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferBeginInfo & setFlags( VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferBeginInfo & setPInheritanceInfo( const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo* pInheritanceInfo_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pInheritanceInfo = pInheritanceInfo_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCommandBufferBeginInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCommandBufferBeginInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkCommandBufferBeginInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCommandBufferBeginInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CommandBufferBeginInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( CommandBufferBeginInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( pInheritanceInfo == rhs.pInheritanceInfo );
|
||||
}
|
||||
|
||||
bool operator!=( CommandBufferBeginInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferBeginInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::CommandBufferUsageFlags flags = {};
|
||||
const VULKAN_HPP_NAMESPACE::CommandBufferInheritanceInfo* pInheritanceInfo = {};
|
||||
};
|
||||
static_assert( sizeof( CommandBufferBeginInfo ) == sizeof( VkCommandBufferBeginInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CommandBufferBeginInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CommandBufferInheritanceConditionalRenderingInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferInheritanceConditionalRenderingInfoEXT( VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: conditionalRenderingEnable( conditionalRenderingEnable_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CommandBufferInheritanceConditionalRenderingInfoEXT( CommandBufferInheritanceConditionalRenderingInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, conditionalRenderingEnable( rhs.conditionalRenderingEnable )
|
||||
{}
|
||||
|
||||
CommandBufferInheritanceConditionalRenderingInfoEXT & operator=( CommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CommandBufferInheritanceConditionalRenderingInfoEXT ) - offsetof( CommandBufferInheritanceConditionalRenderingInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceConditionalRenderingInfoEXT( VkCommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceConditionalRenderingInfoEXT& operator=( VkCommandBufferInheritanceConditionalRenderingInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandBufferInheritanceConditionalRenderingInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceConditionalRenderingInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandBufferInheritanceConditionalRenderingInfoEXT & setConditionalRenderingEnable( VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
conditionalRenderingEnable = conditionalRenderingEnable_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCommandBufferInheritanceConditionalRenderingInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCommandBufferInheritanceConditionalRenderingInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkCommandBufferInheritanceConditionalRenderingInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCommandBufferInheritanceConditionalRenderingInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CommandBufferInheritanceConditionalRenderingInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( CommandBufferInheritanceConditionalRenderingInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( conditionalRenderingEnable == rhs.conditionalRenderingEnable );
|
||||
}
|
||||
|
||||
bool operator!=( CommandBufferInheritanceConditionalRenderingInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandBufferInheritanceConditionalRenderingInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 conditionalRenderingEnable = {};
|
||||
};
|
||||
static_assert( sizeof( CommandBufferInheritanceConditionalRenderingInfoEXT ) == sizeof( VkCommandBufferInheritanceConditionalRenderingInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CommandBufferInheritanceConditionalRenderingInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct CommandPoolCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CommandPoolCreateInfo( VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags_ = {},
|
||||
uint32_t queueFamilyIndex_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, queueFamilyIndex( queueFamilyIndex_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CommandPoolCreateInfo( CommandPoolCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, queueFamilyIndex( rhs.queueFamilyIndex )
|
||||
{}
|
||||
|
||||
CommandPoolCreateInfo & operator=( CommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CommandPoolCreateInfo ) - offsetof( CommandPoolCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandPoolCreateInfo( VkCommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CommandPoolCreateInfo& operator=( VkCommandPoolCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CommandPoolCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandPoolCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandPoolCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CommandPoolCreateInfo & setQueueFamilyIndex( uint32_t queueFamilyIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
queueFamilyIndex = queueFamilyIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCommandPoolCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCommandPoolCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkCommandPoolCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCommandPoolCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CommandPoolCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( CommandPoolCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( queueFamilyIndex == rhs.queueFamilyIndex );
|
||||
}
|
||||
|
||||
bool operator!=( CommandPoolCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCommandPoolCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::CommandPoolCreateFlags flags = {};
|
||||
uint32_t queueFamilyIndex = {};
|
||||
};
|
||||
static_assert( sizeof( CommandPoolCreateInfo ) == sizeof( VkCommandPoolCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CommandPoolCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,54 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,472 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct SpecializationMapEntry
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR SpecializationMapEntry( uint32_t constantID_ = {},
|
||||
uint32_t offset_ = {},
|
||||
size_t size_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: constantID( constantID_ )
|
||||
, offset( offset_ )
|
||||
, size( size_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR SpecializationMapEntry( SpecializationMapEntry const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: constantID( rhs.constantID )
|
||||
, offset( rhs.offset )
|
||||
, size( rhs.size )
|
||||
{}
|
||||
|
||||
SpecializationMapEntry & operator=( SpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( SpecializationMapEntry ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationMapEntry( VkSpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
SpecializationMapEntry& operator=( VkSpecializationMapEntry const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::SpecializationMapEntry const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationMapEntry & setConstantID( uint32_t constantID_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
constantID = constantID_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationMapEntry & setOffset( uint32_t offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationMapEntry & setSize( size_t size_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
size = size_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkSpecializationMapEntry const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkSpecializationMapEntry*>( this );
|
||||
}
|
||||
|
||||
operator VkSpecializationMapEntry &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkSpecializationMapEntry*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( SpecializationMapEntry const& ) const = default;
|
||||
#else
|
||||
bool operator==( SpecializationMapEntry const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( constantID == rhs.constantID )
|
||||
&& ( offset == rhs.offset )
|
||||
&& ( size == rhs.size );
|
||||
}
|
||||
|
||||
bool operator!=( SpecializationMapEntry const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t constantID = {};
|
||||
uint32_t offset = {};
|
||||
size_t size = {};
|
||||
};
|
||||
static_assert( sizeof( SpecializationMapEntry ) == sizeof( VkSpecializationMapEntry ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<SpecializationMapEntry>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct SpecializationInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR SpecializationInfo( uint32_t mapEntryCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::SpecializationMapEntry* pMapEntries_ = {},
|
||||
size_t dataSize_ = {},
|
||||
const void* pData_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: mapEntryCount( mapEntryCount_ )
|
||||
, pMapEntries( pMapEntries_ )
|
||||
, dataSize( dataSize_ )
|
||||
, pData( pData_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR SpecializationInfo( SpecializationInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: mapEntryCount( rhs.mapEntryCount )
|
||||
, pMapEntries( rhs.pMapEntries )
|
||||
, dataSize( rhs.dataSize )
|
||||
, pData( rhs.pData )
|
||||
{}
|
||||
|
||||
SpecializationInfo & operator=( SpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( SpecializationInfo ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationInfo( VkSpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
SpecializationInfo& operator=( VkSpecializationInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::SpecializationInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationInfo & setMapEntryCount( uint32_t mapEntryCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
mapEntryCount = mapEntryCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationInfo & setPMapEntries( const VULKAN_HPP_NAMESPACE::SpecializationMapEntry* pMapEntries_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pMapEntries = pMapEntries_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationInfo & setDataSize( size_t dataSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dataSize = dataSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
SpecializationInfo & setPData( const void* pData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pData = pData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkSpecializationInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkSpecializationInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkSpecializationInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkSpecializationInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( SpecializationInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( SpecializationInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( mapEntryCount == rhs.mapEntryCount )
|
||||
&& ( pMapEntries == rhs.pMapEntries )
|
||||
&& ( dataSize == rhs.dataSize )
|
||||
&& ( pData == rhs.pData );
|
||||
}
|
||||
|
||||
bool operator!=( SpecializationInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t mapEntryCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::SpecializationMapEntry* pMapEntries = {};
|
||||
size_t dataSize = {};
|
||||
const void* pData = {};
|
||||
};
|
||||
static_assert( sizeof( SpecializationInfo ) == sizeof( VkSpecializationInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<SpecializationInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct PipelineShaderStageCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateInfo( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage_ = VULKAN_HPP_NAMESPACE::ShaderStageFlagBits::eVertex,
|
||||
VULKAN_HPP_NAMESPACE::ShaderModule module_ = {},
|
||||
const char* pName_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::SpecializationInfo* pSpecializationInfo_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, stage( stage_ )
|
||||
, module( module_ )
|
||||
, pName( pName_ )
|
||||
, pSpecializationInfo( pSpecializationInfo_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR PipelineShaderStageCreateInfo( PipelineShaderStageCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, stage( rhs.stage )
|
||||
, module( rhs.module )
|
||||
, pName( rhs.pName )
|
||||
, pSpecializationInfo( rhs.pSpecializationInfo )
|
||||
{}
|
||||
|
||||
PipelineShaderStageCreateInfo & operator=( PipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( PipelineShaderStageCreateInfo ) - offsetof( PipelineShaderStageCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo( VkPipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo& operator=( VkPipelineShaderStageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setStage( VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stage = stage_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setModule( VULKAN_HPP_NAMESPACE::ShaderModule module_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
module = module_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setPName( const char* pName_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pName = pName_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
PipelineShaderStageCreateInfo & setPSpecializationInfo( const VULKAN_HPP_NAMESPACE::SpecializationInfo* pSpecializationInfo_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pSpecializationInfo = pSpecializationInfo_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkPipelineShaderStageCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkPipelineShaderStageCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkPipelineShaderStageCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkPipelineShaderStageCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( PipelineShaderStageCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( PipelineShaderStageCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( stage == rhs.stage )
|
||||
&& ( module == rhs.module )
|
||||
&& ( pName == rhs.pName )
|
||||
&& ( pSpecializationInfo == rhs.pSpecializationInfo );
|
||||
}
|
||||
|
||||
bool operator!=( PipelineShaderStageCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::ePipelineShaderStageCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ShaderStageFlagBits stage = VULKAN_HPP_NAMESPACE::ShaderStageFlagBits::eVertex;
|
||||
VULKAN_HPP_NAMESPACE::ShaderModule module = {};
|
||||
const char* pName = {};
|
||||
const VULKAN_HPP_NAMESPACE::SpecializationInfo* pSpecializationInfo = {};
|
||||
};
|
||||
static_assert( sizeof( PipelineShaderStageCreateInfo ) == sizeof( VkPipelineShaderStageCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<PipelineShaderStageCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ComputePipelineCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ComputePipelineCreateInfo( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo stage_ = {},
|
||||
VULKAN_HPP_NAMESPACE::PipelineLayout layout_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ = {},
|
||||
int32_t basePipelineIndex_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, stage( stage_ )
|
||||
, layout( layout_ )
|
||||
, basePipelineHandle( basePipelineHandle_ )
|
||||
, basePipelineIndex( basePipelineIndex_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ComputePipelineCreateInfo( ComputePipelineCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, stage( rhs.stage )
|
||||
, layout( rhs.layout )
|
||||
, basePipelineHandle( rhs.basePipelineHandle )
|
||||
, basePipelineIndex( rhs.basePipelineIndex )
|
||||
{}
|
||||
|
||||
ComputePipelineCreateInfo & operator=( ComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ComputePipelineCreateInfo ) - offsetof( ComputePipelineCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo( VkComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo& operator=( VkComputePipelineCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ComputePipelineCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setStage( VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo stage_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
stage = stage_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setLayout( VULKAN_HPP_NAMESPACE::PipelineLayout layout_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layout = layout_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setBasePipelineHandle( VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
basePipelineHandle = basePipelineHandle_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ComputePipelineCreateInfo & setBasePipelineIndex( int32_t basePipelineIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
basePipelineIndex = basePipelineIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkComputePipelineCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkComputePipelineCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkComputePipelineCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkComputePipelineCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ComputePipelineCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ComputePipelineCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( stage == rhs.stage )
|
||||
&& ( layout == rhs.layout )
|
||||
&& ( basePipelineHandle == rhs.basePipelineHandle )
|
||||
&& ( basePipelineIndex == rhs.basePipelineIndex );
|
||||
}
|
||||
|
||||
bool operator!=( ComputePipelineCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eComputePipelineCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineShaderStageCreateInfo stage = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineLayout layout = {};
|
||||
VULKAN_HPP_NAMESPACE::Pipeline basePipelineHandle = {};
|
||||
int32_t basePipelineIndex = {};
|
||||
};
|
||||
static_assert( sizeof( ComputePipelineCreateInfo ) == sizeof( VkComputePipelineCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ComputePipelineCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,152 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ConditionalRenderingBeginInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ConditionalRenderingBeginInfoEXT( VULKAN_HPP_NAMESPACE::Buffer buffer_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: buffer( buffer_ )
|
||||
, offset( offset_ )
|
||||
, flags( flags_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ConditionalRenderingBeginInfoEXT( ConditionalRenderingBeginInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, buffer( rhs.buffer )
|
||||
, offset( rhs.offset )
|
||||
, flags( rhs.flags )
|
||||
{}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT & operator=( ConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ConditionalRenderingBeginInfoEXT ) - offsetof( ConditionalRenderingBeginInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT( VkConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT& operator=( VkConditionalRenderingBeginInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ConditionalRenderingBeginInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT & setOffset( VULKAN_HPP_NAMESPACE::DeviceSize offset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
offset = offset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConditionalRenderingBeginInfoEXT & setFlags( VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkConditionalRenderingBeginInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkConditionalRenderingBeginInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkConditionalRenderingBeginInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkConditionalRenderingBeginInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ConditionalRenderingBeginInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( ConditionalRenderingBeginInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( buffer == rhs.buffer )
|
||||
&& ( offset == rhs.offset )
|
||||
&& ( flags == rhs.flags );
|
||||
}
|
||||
|
||||
bool operator!=( ConditionalRenderingBeginInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eConditionalRenderingBeginInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize offset = {};
|
||||
VULKAN_HPP_NAMESPACE::ConditionalRenderingFlagsEXT flags = {};
|
||||
};
|
||||
static_assert( sizeof( ConditionalRenderingBeginInfoEXT ) == sizeof( VkConditionalRenderingBeginInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ConditionalRenderingBeginInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,153 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ConformanceVersionKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ConformanceVersionKHR( uint8_t major_ = {},
|
||||
uint8_t minor_ = {},
|
||||
uint8_t subminor_ = {},
|
||||
uint8_t patch_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: major( major_ )
|
||||
, minor( minor_ )
|
||||
, subminor( subminor_ )
|
||||
, patch( patch_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ConformanceVersionKHR( ConformanceVersionKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: major( rhs.major )
|
||||
, minor( rhs.minor )
|
||||
, subminor( rhs.subminor )
|
||||
, patch( rhs.patch )
|
||||
{}
|
||||
|
||||
ConformanceVersionKHR & operator=( ConformanceVersionKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ConformanceVersionKHR ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR( VkConformanceVersionKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR& operator=( VkConformanceVersionKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ConformanceVersionKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR & setMajor( uint8_t major_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
major = major_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR & setMinor( uint8_t minor_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
minor = minor_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR & setSubminor( uint8_t subminor_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
subminor = subminor_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ConformanceVersionKHR & setPatch( uint8_t patch_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
patch = patch_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkConformanceVersionKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkConformanceVersionKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkConformanceVersionKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkConformanceVersionKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ConformanceVersionKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ConformanceVersionKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( major == rhs.major )
|
||||
&& ( minor == rhs.minor )
|
||||
&& ( subminor == rhs.subminor )
|
||||
&& ( patch == rhs.patch );
|
||||
}
|
||||
|
||||
bool operator!=( ConformanceVersionKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint8_t major = {};
|
||||
uint8_t minor = {};
|
||||
uint8_t subminor = {};
|
||||
uint8_t patch = {};
|
||||
};
|
||||
static_assert( sizeof( ConformanceVersionKHR ) == sizeof( VkConformanceVersionKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ConformanceVersionKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,209 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CooperativeMatrixPropertiesNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CooperativeMatrixPropertiesNV( uint32_t MSize_ = {},
|
||||
uint32_t NSize_ = {},
|
||||
uint32_t KSize_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV AType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16,
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV BType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16,
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV CType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16,
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV DType_ = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16,
|
||||
VULKAN_HPP_NAMESPACE::ScopeNV scope_ = VULKAN_HPP_NAMESPACE::ScopeNV::eDevice ) VULKAN_HPP_NOEXCEPT
|
||||
: MSize( MSize_ )
|
||||
, NSize( NSize_ )
|
||||
, KSize( KSize_ )
|
||||
, AType( AType_ )
|
||||
, BType( BType_ )
|
||||
, CType( CType_ )
|
||||
, DType( DType_ )
|
||||
, scope( scope_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CooperativeMatrixPropertiesNV( CooperativeMatrixPropertiesNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, MSize( rhs.MSize )
|
||||
, NSize( rhs.NSize )
|
||||
, KSize( rhs.KSize )
|
||||
, AType( rhs.AType )
|
||||
, BType( rhs.BType )
|
||||
, CType( rhs.CType )
|
||||
, DType( rhs.DType )
|
||||
, scope( rhs.scope )
|
||||
{}
|
||||
|
||||
CooperativeMatrixPropertiesNV & operator=( CooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CooperativeMatrixPropertiesNV ) - offsetof( CooperativeMatrixPropertiesNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV( VkCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV& operator=( VkCooperativeMatrixPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CooperativeMatrixPropertiesNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setPNext( void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setMSize( uint32_t MSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
MSize = MSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setNSize( uint32_t NSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
NSize = NSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setKSize( uint32_t KSize_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
KSize = KSize_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setAType( VULKAN_HPP_NAMESPACE::ComponentTypeNV AType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
AType = AType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setBType( VULKAN_HPP_NAMESPACE::ComponentTypeNV BType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
BType = BType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setCType( VULKAN_HPP_NAMESPACE::ComponentTypeNV CType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
CType = CType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setDType( VULKAN_HPP_NAMESPACE::ComponentTypeNV DType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
DType = DType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CooperativeMatrixPropertiesNV & setScope( VULKAN_HPP_NAMESPACE::ScopeNV scope_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
scope = scope_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCooperativeMatrixPropertiesNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCooperativeMatrixPropertiesNV*>( this );
|
||||
}
|
||||
|
||||
operator VkCooperativeMatrixPropertiesNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCooperativeMatrixPropertiesNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CooperativeMatrixPropertiesNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( CooperativeMatrixPropertiesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( MSize == rhs.MSize )
|
||||
&& ( NSize == rhs.NSize )
|
||||
&& ( KSize == rhs.KSize )
|
||||
&& ( AType == rhs.AType )
|
||||
&& ( BType == rhs.BType )
|
||||
&& ( CType == rhs.CType )
|
||||
&& ( DType == rhs.DType )
|
||||
&& ( scope == rhs.scope );
|
||||
}
|
||||
|
||||
bool operator!=( CooperativeMatrixPropertiesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCooperativeMatrixPropertiesNV;
|
||||
void* pNext = {};
|
||||
uint32_t MSize = {};
|
||||
uint32_t NSize = {};
|
||||
uint32_t KSize = {};
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV AType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16;
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV BType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16;
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV CType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16;
|
||||
VULKAN_HPP_NAMESPACE::ComponentTypeNV DType = VULKAN_HPP_NAMESPACE::ComponentTypeNV::eFloat16;
|
||||
VULKAN_HPP_NAMESPACE::ScopeNV scope = VULKAN_HPP_NAMESPACE::ScopeNV::eDevice;
|
||||
};
|
||||
static_assert( sizeof( CooperativeMatrixPropertiesNV ) == sizeof( VkCooperativeMatrixPropertiesNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CooperativeMatrixPropertiesNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,199 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct CopyDescriptorSet
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR CopyDescriptorSet( VULKAN_HPP_NAMESPACE::DescriptorSet srcSet_ = {},
|
||||
uint32_t srcBinding_ = {},
|
||||
uint32_t srcArrayElement_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ = {},
|
||||
uint32_t dstBinding_ = {},
|
||||
uint32_t dstArrayElement_ = {},
|
||||
uint32_t descriptorCount_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: srcSet( srcSet_ )
|
||||
, srcBinding( srcBinding_ )
|
||||
, srcArrayElement( srcArrayElement_ )
|
||||
, dstSet( dstSet_ )
|
||||
, dstBinding( dstBinding_ )
|
||||
, dstArrayElement( dstArrayElement_ )
|
||||
, descriptorCount( descriptorCount_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR CopyDescriptorSet( CopyDescriptorSet const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, srcSet( rhs.srcSet )
|
||||
, srcBinding( rhs.srcBinding )
|
||||
, srcArrayElement( rhs.srcArrayElement )
|
||||
, dstSet( rhs.dstSet )
|
||||
, dstBinding( rhs.dstBinding )
|
||||
, dstArrayElement( rhs.dstArrayElement )
|
||||
, descriptorCount( rhs.descriptorCount )
|
||||
{}
|
||||
|
||||
CopyDescriptorSet & operator=( CopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( CopyDescriptorSet ) - offsetof( CopyDescriptorSet, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet( VkCopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
CopyDescriptorSet& operator=( VkCopyDescriptorSet const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::CopyDescriptorSet const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setSrcSet( VULKAN_HPP_NAMESPACE::DescriptorSet srcSet_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcSet = srcSet_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setSrcBinding( uint32_t srcBinding_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcBinding = srcBinding_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setSrcArrayElement( uint32_t srcArrayElement_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
srcArrayElement = srcArrayElement_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setDstSet( VULKAN_HPP_NAMESPACE::DescriptorSet dstSet_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstSet = dstSet_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setDstBinding( uint32_t dstBinding_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstBinding = dstBinding_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setDstArrayElement( uint32_t dstArrayElement_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dstArrayElement = dstArrayElement_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
CopyDescriptorSet & setDescriptorCount( uint32_t descriptorCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
descriptorCount = descriptorCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkCopyDescriptorSet const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkCopyDescriptorSet*>( this );
|
||||
}
|
||||
|
||||
operator VkCopyDescriptorSet &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkCopyDescriptorSet*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( CopyDescriptorSet const& ) const = default;
|
||||
#else
|
||||
bool operator==( CopyDescriptorSet const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( srcSet == rhs.srcSet )
|
||||
&& ( srcBinding == rhs.srcBinding )
|
||||
&& ( srcArrayElement == rhs.srcArrayElement )
|
||||
&& ( dstSet == rhs.dstSet )
|
||||
&& ( dstBinding == rhs.dstBinding )
|
||||
&& ( dstArrayElement == rhs.dstArrayElement )
|
||||
&& ( descriptorCount == rhs.descriptorCount );
|
||||
}
|
||||
|
||||
bool operator!=( CopyDescriptorSet const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eCopyDescriptorSet;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::DescriptorSet srcSet = {};
|
||||
uint32_t srcBinding = {};
|
||||
uint32_t srcArrayElement = {};
|
||||
VULKAN_HPP_NAMESPACE::DescriptorSet dstSet = {};
|
||||
uint32_t dstBinding = {};
|
||||
uint32_t dstArrayElement = {};
|
||||
uint32_t descriptorCount = {};
|
||||
};
|
||||
static_assert( sizeof( CopyDescriptorSet ) == sizeof( VkCopyDescriptorSet ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<CopyDescriptorSet>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,169 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct D3D12FenceSubmitInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR D3D12FenceSubmitInfoKHR( uint32_t waitSemaphoreValuesCount_ = {},
|
||||
const uint64_t* pWaitSemaphoreValues_ = {},
|
||||
uint32_t signalSemaphoreValuesCount_ = {},
|
||||
const uint64_t* pSignalSemaphoreValues_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: waitSemaphoreValuesCount( waitSemaphoreValuesCount_ )
|
||||
, pWaitSemaphoreValues( pWaitSemaphoreValues_ )
|
||||
, signalSemaphoreValuesCount( signalSemaphoreValuesCount_ )
|
||||
, pSignalSemaphoreValues( pSignalSemaphoreValues_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR D3D12FenceSubmitInfoKHR( D3D12FenceSubmitInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, waitSemaphoreValuesCount( rhs.waitSemaphoreValuesCount )
|
||||
, pWaitSemaphoreValues( rhs.pWaitSemaphoreValues )
|
||||
, signalSemaphoreValuesCount( rhs.signalSemaphoreValuesCount )
|
||||
, pSignalSemaphoreValues( rhs.pSignalSemaphoreValues )
|
||||
{}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & operator=( D3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( D3D12FenceSubmitInfoKHR ) - offsetof( D3D12FenceSubmitInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR( VkD3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR& operator=( VkD3D12FenceSubmitInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::D3D12FenceSubmitInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & setWaitSemaphoreValuesCount( uint32_t waitSemaphoreValuesCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
waitSemaphoreValuesCount = waitSemaphoreValuesCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & setPWaitSemaphoreValues( const uint64_t* pWaitSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pWaitSemaphoreValues = pWaitSemaphoreValues_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & setSignalSemaphoreValuesCount( uint32_t signalSemaphoreValuesCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
signalSemaphoreValuesCount = signalSemaphoreValuesCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
D3D12FenceSubmitInfoKHR & setPSignalSemaphoreValues( const uint64_t* pSignalSemaphoreValues_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pSignalSemaphoreValues = pSignalSemaphoreValues_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkD3D12FenceSubmitInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkD3D12FenceSubmitInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkD3D12FenceSubmitInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkD3D12FenceSubmitInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( D3D12FenceSubmitInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( D3D12FenceSubmitInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( waitSemaphoreValuesCount == rhs.waitSemaphoreValuesCount )
|
||||
&& ( pWaitSemaphoreValues == rhs.pWaitSemaphoreValues )
|
||||
&& ( signalSemaphoreValuesCount == rhs.signalSemaphoreValuesCount )
|
||||
&& ( pSignalSemaphoreValues == rhs.pSignalSemaphoreValues );
|
||||
}
|
||||
|
||||
bool operator!=( D3D12FenceSubmitInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eD3D12FenceSubmitInfoKHR;
|
||||
const void* pNext = {};
|
||||
uint32_t waitSemaphoreValuesCount = {};
|
||||
const uint64_t* pWaitSemaphoreValues = {};
|
||||
uint32_t signalSemaphoreValuesCount = {};
|
||||
const uint64_t* pSignalSemaphoreValues = {};
|
||||
};
|
||||
static_assert( sizeof( D3D12FenceSubmitInfoKHR ) == sizeof( VkD3D12FenceSubmitInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<D3D12FenceSubmitInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,296 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct DedicatedAllocationBufferCreateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationBufferCreateInfoNV( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: dedicatedAllocation( dedicatedAllocation_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationBufferCreateInfoNV( DedicatedAllocationBufferCreateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, dedicatedAllocation( rhs.dedicatedAllocation )
|
||||
{}
|
||||
|
||||
DedicatedAllocationBufferCreateInfoNV & operator=( DedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( DedicatedAllocationBufferCreateInfoNV ) - offsetof( DedicatedAllocationBufferCreateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationBufferCreateInfoNV( VkDedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DedicatedAllocationBufferCreateInfoNV& operator=( VkDedicatedAllocationBufferCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DedicatedAllocationBufferCreateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationBufferCreateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationBufferCreateInfoNV & setDedicatedAllocation( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dedicatedAllocation = dedicatedAllocation_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationBufferCreateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDedicatedAllocationBufferCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationBufferCreateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDedicatedAllocationBufferCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DedicatedAllocationBufferCreateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( DedicatedAllocationBufferCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( dedicatedAllocation == rhs.dedicatedAllocation );
|
||||
}
|
||||
|
||||
bool operator!=( DedicatedAllocationBufferCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationBufferCreateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation = {};
|
||||
};
|
||||
static_assert( sizeof( DedicatedAllocationBufferCreateInfoNV ) == sizeof( VkDedicatedAllocationBufferCreateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DedicatedAllocationBufferCreateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct DedicatedAllocationImageCreateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: dedicatedAllocation( dedicatedAllocation_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationImageCreateInfoNV( DedicatedAllocationImageCreateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, dedicatedAllocation( rhs.dedicatedAllocation )
|
||||
{}
|
||||
|
||||
DedicatedAllocationImageCreateInfoNV & operator=( DedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( DedicatedAllocationImageCreateInfoNV ) - offsetof( DedicatedAllocationImageCreateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationImageCreateInfoNV( VkDedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DedicatedAllocationImageCreateInfoNV& operator=( VkDedicatedAllocationImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DedicatedAllocationImageCreateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationImageCreateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationImageCreateInfoNV & setDedicatedAllocation( VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dedicatedAllocation = dedicatedAllocation_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationImageCreateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDedicatedAllocationImageCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationImageCreateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDedicatedAllocationImageCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DedicatedAllocationImageCreateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( DedicatedAllocationImageCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( dedicatedAllocation == rhs.dedicatedAllocation );
|
||||
}
|
||||
|
||||
bool operator!=( DedicatedAllocationImageCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationImageCreateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 dedicatedAllocation = {};
|
||||
};
|
||||
static_assert( sizeof( DedicatedAllocationImageCreateInfoNV ) == sizeof( VkDedicatedAllocationImageCreateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DedicatedAllocationImageCreateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct DedicatedAllocationMemoryAllocateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationMemoryAllocateInfoNV( VULKAN_HPP_NAMESPACE::Image image_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: image( image_ )
|
||||
, buffer( buffer_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DedicatedAllocationMemoryAllocateInfoNV( DedicatedAllocationMemoryAllocateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, image( rhs.image )
|
||||
, buffer( rhs.buffer )
|
||||
{}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV & operator=( DedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( DedicatedAllocationMemoryAllocateInfoNV ) - offsetof( DedicatedAllocationMemoryAllocateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV( VkDedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV& operator=( VkDedicatedAllocationMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DedicatedAllocationMemoryAllocateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV & setImage( VULKAN_HPP_NAMESPACE::Image image_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
image = image_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DedicatedAllocationMemoryAllocateInfoNV & setBuffer( VULKAN_HPP_NAMESPACE::Buffer buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationMemoryAllocateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDedicatedAllocationMemoryAllocateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkDedicatedAllocationMemoryAllocateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDedicatedAllocationMemoryAllocateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DedicatedAllocationMemoryAllocateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( DedicatedAllocationMemoryAllocateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( image == rhs.image )
|
||||
&& ( buffer == rhs.buffer );
|
||||
}
|
||||
|
||||
bool operator!=( DedicatedAllocationMemoryAllocateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDedicatedAllocationMemoryAllocateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Image image = {};
|
||||
VULKAN_HPP_NAMESPACE::Buffer buffer = {};
|
||||
};
|
||||
static_assert( sizeof( DedicatedAllocationMemoryAllocateInfoNV ) == sizeof( VkDedicatedAllocationMemoryAllocateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DedicatedAllocationMemoryAllocateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,150 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct DispatchIndirectCommand
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( uint32_t x_ = {},
|
||||
uint32_t y_ = {},
|
||||
uint32_t z_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: x( x_ )
|
||||
, y( y_ )
|
||||
, z( z_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DispatchIndirectCommand( DispatchIndirectCommand const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: x( rhs.x )
|
||||
, y( rhs.y )
|
||||
, z( rhs.z )
|
||||
{}
|
||||
|
||||
DispatchIndirectCommand & operator=( DispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( DispatchIndirectCommand ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DispatchIndirectCommand( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DispatchIndirectCommand& operator=( VkDispatchIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DispatchIndirectCommand const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DispatchIndirectCommand & setX( uint32_t x_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
x = x_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DispatchIndirectCommand & setY( uint32_t y_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
y = y_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DispatchIndirectCommand & setZ( uint32_t z_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
z = z_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDispatchIndirectCommand const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDispatchIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
operator VkDispatchIndirectCommand &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDispatchIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DispatchIndirectCommand const& ) const = default;
|
||||
#else
|
||||
bool operator==( DispatchIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( x == rhs.x )
|
||||
&& ( y == rhs.y )
|
||||
&& ( z == rhs.z );
|
||||
}
|
||||
|
||||
bool operator!=( DispatchIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t x = {};
|
||||
uint32_t y = {};
|
||||
uint32_t z = {};
|
||||
};
|
||||
static_assert( sizeof( DispatchIndirectCommand ) == sizeof( VkDispatchIndirectCommand ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DispatchIndirectCommand>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,345 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct DrawIndexedIndirectCommand
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DrawIndexedIndirectCommand( uint32_t indexCount_ = {},
|
||||
uint32_t instanceCount_ = {},
|
||||
uint32_t firstIndex_ = {},
|
||||
int32_t vertexOffset_ = {},
|
||||
uint32_t firstInstance_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: indexCount( indexCount_ )
|
||||
, instanceCount( instanceCount_ )
|
||||
, firstIndex( firstIndex_ )
|
||||
, vertexOffset( vertexOffset_ )
|
||||
, firstInstance( firstInstance_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DrawIndexedIndirectCommand( DrawIndexedIndirectCommand const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: indexCount( rhs.indexCount )
|
||||
, instanceCount( rhs.instanceCount )
|
||||
, firstIndex( rhs.firstIndex )
|
||||
, vertexOffset( rhs.vertexOffset )
|
||||
, firstInstance( rhs.firstInstance )
|
||||
{}
|
||||
|
||||
DrawIndexedIndirectCommand & operator=( DrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( DrawIndexedIndirectCommand ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand( VkDrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand& operator=( VkDrawIndexedIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DrawIndexedIndirectCommand const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand & setIndexCount( uint32_t indexCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
indexCount = indexCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand & setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
instanceCount = instanceCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand & setFirstIndex( uint32_t firstIndex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
firstIndex = firstIndex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand & setVertexOffset( int32_t vertexOffset_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexOffset = vertexOffset_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndexedIndirectCommand & setFirstInstance( uint32_t firstInstance_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
firstInstance = firstInstance_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDrawIndexedIndirectCommand const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDrawIndexedIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
operator VkDrawIndexedIndirectCommand &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDrawIndexedIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DrawIndexedIndirectCommand const& ) const = default;
|
||||
#else
|
||||
bool operator==( DrawIndexedIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( indexCount == rhs.indexCount )
|
||||
&& ( instanceCount == rhs.instanceCount )
|
||||
&& ( firstIndex == rhs.firstIndex )
|
||||
&& ( vertexOffset == rhs.vertexOffset )
|
||||
&& ( firstInstance == rhs.firstInstance );
|
||||
}
|
||||
|
||||
bool operator!=( DrawIndexedIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t indexCount = {};
|
||||
uint32_t instanceCount = {};
|
||||
uint32_t firstIndex = {};
|
||||
int32_t vertexOffset = {};
|
||||
uint32_t firstInstance = {};
|
||||
};
|
||||
static_assert( sizeof( DrawIndexedIndirectCommand ) == sizeof( VkDrawIndexedIndirectCommand ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DrawIndexedIndirectCommand>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct DrawIndirectCommand
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DrawIndirectCommand( uint32_t vertexCount_ = {},
|
||||
uint32_t instanceCount_ = {},
|
||||
uint32_t firstVertex_ = {},
|
||||
uint32_t firstInstance_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: vertexCount( vertexCount_ )
|
||||
, instanceCount( instanceCount_ )
|
||||
, firstVertex( firstVertex_ )
|
||||
, firstInstance( firstInstance_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DrawIndirectCommand( DrawIndirectCommand const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: vertexCount( rhs.vertexCount )
|
||||
, instanceCount( rhs.instanceCount )
|
||||
, firstVertex( rhs.firstVertex )
|
||||
, firstInstance( rhs.firstInstance )
|
||||
{}
|
||||
|
||||
DrawIndirectCommand & operator=( DrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( DrawIndirectCommand ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndirectCommand( VkDrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DrawIndirectCommand& operator=( VkDrawIndirectCommand const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DrawIndirectCommand const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndirectCommand & setVertexCount( uint32_t vertexCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
vertexCount = vertexCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndirectCommand & setInstanceCount( uint32_t instanceCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
instanceCount = instanceCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndirectCommand & setFirstVertex( uint32_t firstVertex_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
firstVertex = firstVertex_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawIndirectCommand & setFirstInstance( uint32_t firstInstance_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
firstInstance = firstInstance_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDrawIndirectCommand const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDrawIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
operator VkDrawIndirectCommand &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDrawIndirectCommand*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DrawIndirectCommand const& ) const = default;
|
||||
#else
|
||||
bool operator==( DrawIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( vertexCount == rhs.vertexCount )
|
||||
&& ( instanceCount == rhs.instanceCount )
|
||||
&& ( firstVertex == rhs.firstVertex )
|
||||
&& ( firstInstance == rhs.firstInstance );
|
||||
}
|
||||
|
||||
bool operator!=( DrawIndirectCommand const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t vertexCount = {};
|
||||
uint32_t instanceCount = {};
|
||||
uint32_t firstVertex = {};
|
||||
uint32_t firstInstance = {};
|
||||
};
|
||||
static_assert( sizeof( DrawIndirectCommand ) == sizeof( VkDrawIndirectCommand ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DrawIndirectCommand>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct DrawMeshTasksIndirectCommandNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DrawMeshTasksIndirectCommandNV( uint32_t taskCount_ = {},
|
||||
uint32_t firstTask_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: taskCount( taskCount_ )
|
||||
, firstTask( firstTask_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DrawMeshTasksIndirectCommandNV( DrawMeshTasksIndirectCommandNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: taskCount( rhs.taskCount )
|
||||
, firstTask( rhs.firstTask )
|
||||
{}
|
||||
|
||||
DrawMeshTasksIndirectCommandNV & operator=( DrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( DrawMeshTasksIndirectCommandNV ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawMeshTasksIndirectCommandNV( VkDrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DrawMeshTasksIndirectCommandNV& operator=( VkDrawMeshTasksIndirectCommandNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DrawMeshTasksIndirectCommandNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawMeshTasksIndirectCommandNV & setTaskCount( uint32_t taskCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
taskCount = taskCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrawMeshTasksIndirectCommandNV & setFirstTask( uint32_t firstTask_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
firstTask = firstTask_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDrawMeshTasksIndirectCommandNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDrawMeshTasksIndirectCommandNV*>( this );
|
||||
}
|
||||
|
||||
operator VkDrawMeshTasksIndirectCommandNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDrawMeshTasksIndirectCommandNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DrawMeshTasksIndirectCommandNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( DrawMeshTasksIndirectCommandNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( taskCount == rhs.taskCount )
|
||||
&& ( firstTask == rhs.firstTask );
|
||||
}
|
||||
|
||||
bool operator!=( DrawMeshTasksIndirectCommandNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint32_t taskCount = {};
|
||||
uint32_t firstTask = {};
|
||||
};
|
||||
static_assert( sizeof( DrawMeshTasksIndirectCommandNV ) == sizeof( VkDrawMeshTasksIndirectCommandNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DrawMeshTasksIndirectCommandNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,203 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct DrmFormatModifierPropertiesEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesEXT( uint64_t drmFormatModifier_ = {},
|
||||
uint32_t drmFormatModifierPlaneCount_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags drmFormatModifierTilingFeatures_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: drmFormatModifier( drmFormatModifier_ )
|
||||
, drmFormatModifierPlaneCount( drmFormatModifierPlaneCount_ )
|
||||
, drmFormatModifierTilingFeatures( drmFormatModifierTilingFeatures_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesEXT( DrmFormatModifierPropertiesEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: drmFormatModifier( rhs.drmFormatModifier )
|
||||
, drmFormatModifierPlaneCount( rhs.drmFormatModifierPlaneCount )
|
||||
, drmFormatModifierTilingFeatures( rhs.drmFormatModifierTilingFeatures )
|
||||
{}
|
||||
|
||||
DrmFormatModifierPropertiesEXT & operator=( DrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( DrmFormatModifierPropertiesEXT ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrmFormatModifierPropertiesEXT( VkDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DrmFormatModifierPropertiesEXT& operator=( VkDrmFormatModifierPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDrmFormatModifierPropertiesEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDrmFormatModifierPropertiesEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkDrmFormatModifierPropertiesEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDrmFormatModifierPropertiesEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DrmFormatModifierPropertiesEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( DrmFormatModifierPropertiesEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( drmFormatModifier == rhs.drmFormatModifier )
|
||||
&& ( drmFormatModifierPlaneCount == rhs.drmFormatModifierPlaneCount )
|
||||
&& ( drmFormatModifierTilingFeatures == rhs.drmFormatModifierTilingFeatures );
|
||||
}
|
||||
|
||||
bool operator!=( DrmFormatModifierPropertiesEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
uint64_t drmFormatModifier = {};
|
||||
uint32_t drmFormatModifierPlaneCount = {};
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags drmFormatModifierTilingFeatures = {};
|
||||
};
|
||||
static_assert( sizeof( DrmFormatModifierPropertiesEXT ) == sizeof( VkDrmFormatModifierPropertiesEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DrmFormatModifierPropertiesEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct DrmFormatModifierPropertiesListEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesListEXT( uint32_t drmFormatModifierCount_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT* pDrmFormatModifierProperties_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: drmFormatModifierCount( drmFormatModifierCount_ )
|
||||
, pDrmFormatModifierProperties( pDrmFormatModifierProperties_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR DrmFormatModifierPropertiesListEXT( DrmFormatModifierPropertiesListEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, drmFormatModifierCount( rhs.drmFormatModifierCount )
|
||||
, pDrmFormatModifierProperties( rhs.pDrmFormatModifierProperties )
|
||||
{}
|
||||
|
||||
DrmFormatModifierPropertiesListEXT & operator=( DrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( DrmFormatModifierPropertiesListEXT ) - offsetof( DrmFormatModifierPropertiesListEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
DrmFormatModifierPropertiesListEXT( VkDrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
DrmFormatModifierPropertiesListEXT& operator=( VkDrmFormatModifierPropertiesListEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesListEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkDrmFormatModifierPropertiesListEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkDrmFormatModifierPropertiesListEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkDrmFormatModifierPropertiesListEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkDrmFormatModifierPropertiesListEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( DrmFormatModifierPropertiesListEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( DrmFormatModifierPropertiesListEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( drmFormatModifierCount == rhs.drmFormatModifierCount )
|
||||
&& ( pDrmFormatModifierProperties == rhs.pDrmFormatModifierProperties );
|
||||
}
|
||||
|
||||
bool operator!=( DrmFormatModifierPropertiesListEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eDrmFormatModifierPropertiesListEXT;
|
||||
void* pNext = {};
|
||||
uint32_t drmFormatModifierCount = {};
|
||||
VULKAN_HPP_NAMESPACE::DrmFormatModifierPropertiesEXT* pDrmFormatModifierProperties = {};
|
||||
};
|
||||
static_assert( sizeof( DrmFormatModifierPropertiesListEXT ) == sizeof( VkDrmFormatModifierPropertiesListEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<DrmFormatModifierPropertiesListEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,143 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct EventCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR EventCreateInfo( VULKAN_HPP_NAMESPACE::EventCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR EventCreateInfo( EventCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
{}
|
||||
|
||||
EventCreateInfo & operator=( EventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( EventCreateInfo ) - offsetof( EventCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
EventCreateInfo( VkEventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
EventCreateInfo& operator=( VkEventCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::EventCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
EventCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
EventCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::EventCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkEventCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkEventCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkEventCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkEventCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( EventCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( EventCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags );
|
||||
}
|
||||
|
||||
bool operator!=( EventCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eEventCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::EventCreateFlags flags = {};
|
||||
};
|
||||
static_assert( sizeof( EventCreateInfo ) == sizeof( VkEventCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<EventCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,748 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ExportFenceCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportFenceCreateInfo( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportFenceCreateInfo( ExportFenceCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExportFenceCreateInfo & operator=( ExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportFenceCreateInfo ) - offsetof( ExportFenceCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceCreateInfo( VkExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportFenceCreateInfo& operator=( VkExportFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportFenceCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceCreateInfo & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportFenceCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportFenceCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkExportFenceCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportFenceCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportFenceCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportFenceCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExportFenceCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportFenceCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExportFenceCreateInfo ) == sizeof( VkExportFenceCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportFenceCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportFenceWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportFenceWin32HandleInfoKHR( const SECURITY_ATTRIBUTES* pAttributes_ = {},
|
||||
DWORD dwAccess_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pAttributes( pAttributes_ )
|
||||
, dwAccess( dwAccess_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportFenceWin32HandleInfoKHR( ExportFenceWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pAttributes( rhs.pAttributes )
|
||||
, dwAccess( rhs.dwAccess )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR & operator=( ExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportFenceWin32HandleInfoKHR ) - offsetof( ExportFenceWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR( VkExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR& operator=( VkExportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportFenceWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR & setPAttributes( const SECURITY_ATTRIBUTES* pAttributes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttributes = pAttributes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dwAccess = dwAccess_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportFenceWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportFenceWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportFenceWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkExportFenceWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportFenceWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportFenceWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportFenceWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pAttributes == rhs.pAttributes )
|
||||
&& ( dwAccess == rhs.dwAccess )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ExportFenceWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportFenceWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
const SECURITY_ATTRIBUTES* pAttributes = {};
|
||||
DWORD dwAccess = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ExportFenceWin32HandleInfoKHR ) == sizeof( VkExportFenceWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportFenceWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
struct ExportMemoryAllocateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfo( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfo( ExportMemoryAllocateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExportMemoryAllocateInfo & operator=( ExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportMemoryAllocateInfo ) - offsetof( ExportMemoryAllocateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfo( VkExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfo& operator=( VkExportMemoryAllocateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfo & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportMemoryAllocateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportMemoryAllocateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkExportMemoryAllocateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportMemoryAllocateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportMemoryAllocateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportMemoryAllocateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExportMemoryAllocateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryAllocateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExportMemoryAllocateInfo ) == sizeof( VkExportMemoryAllocateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportMemoryAllocateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExportMemoryAllocateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfoNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryAllocateInfoNV( ExportMemoryAllocateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExportMemoryAllocateInfoNV & operator=( ExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportMemoryAllocateInfoNV ) - offsetof( ExportMemoryAllocateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfoNV( VkExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfoNV& operator=( VkExportMemoryAllocateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportMemoryAllocateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryAllocateInfoNV & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportMemoryAllocateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportMemoryAllocateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkExportMemoryAllocateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportMemoryAllocateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportMemoryAllocateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportMemoryAllocateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExportMemoryAllocateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryAllocateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExportMemoryAllocateInfoNV ) == sizeof( VkExportMemoryAllocateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportMemoryAllocateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportMemoryWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoKHR( const SECURITY_ATTRIBUTES* pAttributes_ = {},
|
||||
DWORD dwAccess_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pAttributes( pAttributes_ )
|
||||
, dwAccess( dwAccess_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoKHR( ExportMemoryWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pAttributes( rhs.pAttributes )
|
||||
, dwAccess( rhs.dwAccess )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR & operator=( ExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportMemoryWin32HandleInfoKHR ) - offsetof( ExportMemoryWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR( VkExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR& operator=( VkExportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR & setPAttributes( const SECURITY_ATTRIBUTES* pAttributes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttributes = pAttributes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dwAccess = dwAccess_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportMemoryWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportMemoryWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkExportMemoryWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportMemoryWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportMemoryWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportMemoryWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pAttributes == rhs.pAttributes )
|
||||
&& ( dwAccess == rhs.dwAccess )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ExportMemoryWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
const SECURITY_ATTRIBUTES* pAttributes = {};
|
||||
DWORD dwAccess = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ExportMemoryWin32HandleInfoKHR ) == sizeof( VkExportMemoryWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportMemoryWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportMemoryWin32HandleInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoNV( const SECURITY_ATTRIBUTES* pAttributes_ = {},
|
||||
DWORD dwAccess_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pAttributes( pAttributes_ )
|
||||
, dwAccess( dwAccess_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportMemoryWin32HandleInfoNV( ExportMemoryWin32HandleInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pAttributes( rhs.pAttributes )
|
||||
, dwAccess( rhs.dwAccess )
|
||||
{}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV & operator=( ExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportMemoryWin32HandleInfoNV ) - offsetof( ExportMemoryWin32HandleInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV( VkExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV& operator=( VkExportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportMemoryWin32HandleInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV & setPAttributes( const SECURITY_ATTRIBUTES* pAttributes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttributes = pAttributes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportMemoryWin32HandleInfoNV & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dwAccess = dwAccess_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportMemoryWin32HandleInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportMemoryWin32HandleInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkExportMemoryWin32HandleInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportMemoryWin32HandleInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportMemoryWin32HandleInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportMemoryWin32HandleInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pAttributes == rhs.pAttributes )
|
||||
&& ( dwAccess == rhs.dwAccess );
|
||||
}
|
||||
|
||||
bool operator!=( ExportMemoryWin32HandleInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportMemoryWin32HandleInfoNV;
|
||||
const void* pNext = {};
|
||||
const SECURITY_ATTRIBUTES* pAttributes = {};
|
||||
DWORD dwAccess = {};
|
||||
};
|
||||
static_assert( sizeof( ExportMemoryWin32HandleInfoNV ) == sizeof( VkExportMemoryWin32HandleInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportMemoryWin32HandleInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
struct ExportSemaphoreCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportSemaphoreCreateInfo( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportSemaphoreCreateInfo( ExportSemaphoreCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExportSemaphoreCreateInfo & operator=( ExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportSemaphoreCreateInfo ) - offsetof( ExportSemaphoreCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreCreateInfo( VkExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportSemaphoreCreateInfo& operator=( VkExportSemaphoreCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportSemaphoreCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreCreateInfo & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportSemaphoreCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportSemaphoreCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkExportSemaphoreCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportSemaphoreCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportSemaphoreCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportSemaphoreCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExportSemaphoreCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportSemaphoreCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExportSemaphoreCreateInfo ) == sizeof( VkExportSemaphoreCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportSemaphoreCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ExportSemaphoreWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExportSemaphoreWin32HandleInfoKHR( const SECURITY_ATTRIBUTES* pAttributes_ = {},
|
||||
DWORD dwAccess_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pAttributes( pAttributes_ )
|
||||
, dwAccess( dwAccess_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExportSemaphoreWin32HandleInfoKHR( ExportSemaphoreWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pAttributes( rhs.pAttributes )
|
||||
, dwAccess( rhs.dwAccess )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR & operator=( ExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExportSemaphoreWin32HandleInfoKHR ) - offsetof( ExportSemaphoreWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR( VkExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR& operator=( VkExportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExportSemaphoreWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR & setPAttributes( const SECURITY_ATTRIBUTES* pAttributes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttributes = pAttributes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR & setDwAccess( DWORD dwAccess_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dwAccess = dwAccess_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExportSemaphoreWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExportSemaphoreWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExportSemaphoreWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkExportSemaphoreWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExportSemaphoreWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExportSemaphoreWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExportSemaphoreWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pAttributes == rhs.pAttributes )
|
||||
&& ( dwAccess == rhs.dwAccess )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ExportSemaphoreWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExportSemaphoreWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
const SECURITY_ATTRIBUTES* pAttributes = {};
|
||||
DWORD dwAccess = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ExportSemaphoreWin32HandleInfoKHR ) == sizeof( VkExportSemaphoreWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExportSemaphoreWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,137 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ExtensionProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR_14 ExtensionProperties( std::array<char,VK_MAX_EXTENSION_NAME_SIZE> const& extensionName_ = {},
|
||||
uint32_t specVersion_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: extensionName{}
|
||||
, specVersion( specVersion_ )
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::ConstExpression1DArrayCopy<char,VK_MAX_EXTENSION_NAME_SIZE>::copy( extensionName, extensionName_ );
|
||||
}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR_14 ExtensionProperties( ExtensionProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: extensionName{}
|
||||
, specVersion( rhs.specVersion )
|
||||
{
|
||||
VULKAN_HPP_NAMESPACE::ConstExpression1DArrayCopy<char,VK_MAX_EXTENSION_NAME_SIZE>::copy( extensionName, rhs.extensionName );
|
||||
}
|
||||
|
||||
ExtensionProperties & operator=( ExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ExtensionProperties ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExtensionProperties( VkExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExtensionProperties& operator=( VkExtensionProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExtensionProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExtensionProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExtensionProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExtensionProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExtensionProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExtensionProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExtensionProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( memcmp( extensionName, rhs.extensionName, VK_MAX_EXTENSION_NAME_SIZE * sizeof( char ) ) == 0 )
|
||||
&& ( specVersion == rhs.specVersion );
|
||||
}
|
||||
|
||||
bool operator!=( ExtensionProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
char extensionName[VK_MAX_EXTENSION_NAME_SIZE] = {};
|
||||
uint32_t specVersion = {};
|
||||
};
|
||||
static_assert( sizeof( ExtensionProperties ) == sizeof( VkExtensionProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExtensionProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,73 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,856 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct ExternalMemoryProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryProperties( VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlags externalMemoryFeatures_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags exportFromImportedHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags compatibleHandleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: externalMemoryFeatures( externalMemoryFeatures_ )
|
||||
, exportFromImportedHandleTypes( exportFromImportedHandleTypes_ )
|
||||
, compatibleHandleTypes( compatibleHandleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryProperties( ExternalMemoryProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: externalMemoryFeatures( rhs.externalMemoryFeatures )
|
||||
, exportFromImportedHandleTypes( rhs.exportFromImportedHandleTypes )
|
||||
, compatibleHandleTypes( rhs.compatibleHandleTypes )
|
||||
{}
|
||||
|
||||
ExternalMemoryProperties & operator=( ExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ExternalMemoryProperties ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryProperties( VkExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalMemoryProperties& operator=( VkExternalMemoryProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalMemoryProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalMemoryProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalMemoryProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalMemoryProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalMemoryProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalMemoryProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalMemoryProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( externalMemoryFeatures == rhs.externalMemoryFeatures )
|
||||
&& ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes )
|
||||
&& ( compatibleHandleTypes == rhs.compatibleHandleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalMemoryProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlags externalMemoryFeatures = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags exportFromImportedHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags compatibleHandleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalMemoryProperties ) == sizeof( VkExternalMemoryProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalMemoryProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalBufferProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalBufferProperties( VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: externalMemoryProperties( externalMemoryProperties_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalBufferProperties( ExternalBufferProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, externalMemoryProperties( rhs.externalMemoryProperties )
|
||||
{}
|
||||
|
||||
ExternalBufferProperties & operator=( ExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalBufferProperties ) - offsetof( ExternalBufferProperties, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalBufferProperties( VkExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalBufferProperties& operator=( VkExternalBufferProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalBufferProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalBufferProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalBufferProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalBufferProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalBufferProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalBufferProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalBufferProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( externalMemoryProperties == rhs.externalMemoryProperties );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalBufferProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalBufferProperties;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalBufferProperties ) == sizeof( VkExternalBufferProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalBufferProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalFenceProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalFenceProperties( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags exportFromImportedHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags compatibleHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceFeatureFlags externalFenceFeatures_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: exportFromImportedHandleTypes( exportFromImportedHandleTypes_ )
|
||||
, compatibleHandleTypes( compatibleHandleTypes_ )
|
||||
, externalFenceFeatures( externalFenceFeatures_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalFenceProperties( ExternalFenceProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, exportFromImportedHandleTypes( rhs.exportFromImportedHandleTypes )
|
||||
, compatibleHandleTypes( rhs.compatibleHandleTypes )
|
||||
, externalFenceFeatures( rhs.externalFenceFeatures )
|
||||
{}
|
||||
|
||||
ExternalFenceProperties & operator=( ExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalFenceProperties ) - offsetof( ExternalFenceProperties, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalFenceProperties( VkExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalFenceProperties& operator=( VkExternalFenceProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalFenceProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalFenceProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalFenceProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalFenceProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalFenceProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalFenceProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalFenceProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes )
|
||||
&& ( compatibleHandleTypes == rhs.compatibleHandleTypes )
|
||||
&& ( externalFenceFeatures == rhs.externalFenceFeatures );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalFenceProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalFenceProperties;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags exportFromImportedHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlags compatibleHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceFeatureFlags externalFenceFeatures = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalFenceProperties ) == sizeof( VkExternalFenceProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalFenceProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct ExternalFormatANDROID
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalFormatANDROID( uint64_t externalFormat_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: externalFormat( externalFormat_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalFormatANDROID( ExternalFormatANDROID const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, externalFormat( rhs.externalFormat )
|
||||
{}
|
||||
|
||||
ExternalFormatANDROID & operator=( ExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalFormatANDROID ) - offsetof( ExternalFormatANDROID, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalFormatANDROID( VkExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalFormatANDROID& operator=( VkExternalFormatANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalFormatANDROID const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalFormatANDROID & setPNext( void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalFormatANDROID & setExternalFormat( uint64_t externalFormat_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
externalFormat = externalFormat_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalFormatANDROID const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalFormatANDROID*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalFormatANDROID &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalFormatANDROID*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalFormatANDROID const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalFormatANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( externalFormat == rhs.externalFormat );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalFormatANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalFormatANDROID;
|
||||
void* pNext = {};
|
||||
uint64_t externalFormat = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalFormatANDROID ) == sizeof( VkExternalFormatANDROID ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalFormatANDROID>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
struct ExternalImageFormatProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalImageFormatProperties( VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: externalMemoryProperties( externalMemoryProperties_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalImageFormatProperties( ExternalImageFormatProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, externalMemoryProperties( rhs.externalMemoryProperties )
|
||||
{}
|
||||
|
||||
ExternalImageFormatProperties & operator=( ExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalImageFormatProperties ) - offsetof( ExternalImageFormatProperties, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalImageFormatProperties( VkExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalImageFormatProperties& operator=( VkExternalImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalImageFormatProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalImageFormatProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalImageFormatProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalImageFormatProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalImageFormatProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalImageFormatProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalImageFormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( externalMemoryProperties == rhs.externalMemoryProperties );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalImageFormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalImageFormatProperties;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryProperties externalMemoryProperties = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalImageFormatProperties ) == sizeof( VkExternalImageFormatProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalImageFormatProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ImageFormatProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImageFormatProperties( VULKAN_HPP_NAMESPACE::Extent3D maxExtent_ = {},
|
||||
uint32_t maxMipLevels_ = {},
|
||||
uint32_t maxArrayLayers_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts_ = {},
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize maxResourceSize_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: maxExtent( maxExtent_ )
|
||||
, maxMipLevels( maxMipLevels_ )
|
||||
, maxArrayLayers( maxArrayLayers_ )
|
||||
, sampleCounts( sampleCounts_ )
|
||||
, maxResourceSize( maxResourceSize_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImageFormatProperties( ImageFormatProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: maxExtent( rhs.maxExtent )
|
||||
, maxMipLevels( rhs.maxMipLevels )
|
||||
, maxArrayLayers( rhs.maxArrayLayers )
|
||||
, sampleCounts( rhs.sampleCounts )
|
||||
, maxResourceSize( rhs.maxResourceSize )
|
||||
{}
|
||||
|
||||
ImageFormatProperties & operator=( ImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ImageFormatProperties ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImageFormatProperties( VkImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImageFormatProperties& operator=( VkImageFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImageFormatProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImageFormatProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImageFormatProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkImageFormatProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImageFormatProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImageFormatProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImageFormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( maxExtent == rhs.maxExtent )
|
||||
&& ( maxMipLevels == rhs.maxMipLevels )
|
||||
&& ( maxArrayLayers == rhs.maxArrayLayers )
|
||||
&& ( sampleCounts == rhs.sampleCounts )
|
||||
&& ( maxResourceSize == rhs.maxResourceSize );
|
||||
}
|
||||
|
||||
bool operator!=( ImageFormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::Extent3D maxExtent = {};
|
||||
uint32_t maxMipLevels = {};
|
||||
uint32_t maxArrayLayers = {};
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags sampleCounts = {};
|
||||
VULKAN_HPP_NAMESPACE::DeviceSize maxResourceSize = {};
|
||||
};
|
||||
static_assert( sizeof( ImageFormatProperties ) == sizeof( VkImageFormatProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImageFormatProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalImageFormatPropertiesNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalImageFormatPropertiesNV( VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlagsNV externalMemoryFeatures_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV compatibleHandleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: imageFormatProperties( imageFormatProperties_ )
|
||||
, externalMemoryFeatures( externalMemoryFeatures_ )
|
||||
, exportFromImportedHandleTypes( exportFromImportedHandleTypes_ )
|
||||
, compatibleHandleTypes( compatibleHandleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalImageFormatPropertiesNV( ExternalImageFormatPropertiesNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: imageFormatProperties( rhs.imageFormatProperties )
|
||||
, externalMemoryFeatures( rhs.externalMemoryFeatures )
|
||||
, exportFromImportedHandleTypes( rhs.exportFromImportedHandleTypes )
|
||||
, compatibleHandleTypes( rhs.compatibleHandleTypes )
|
||||
{}
|
||||
|
||||
ExternalImageFormatPropertiesNV & operator=( ExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( ExternalImageFormatPropertiesNV ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalImageFormatPropertiesNV( VkExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalImageFormatPropertiesNV& operator=( VkExternalImageFormatPropertiesNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalImageFormatPropertiesNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalImageFormatPropertiesNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalImageFormatPropertiesNV*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalImageFormatPropertiesNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalImageFormatPropertiesNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalImageFormatPropertiesNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalImageFormatPropertiesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( imageFormatProperties == rhs.imageFormatProperties )
|
||||
&& ( externalMemoryFeatures == rhs.externalMemoryFeatures )
|
||||
&& ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes )
|
||||
&& ( compatibleHandleTypes == rhs.compatibleHandleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalImageFormatPropertiesNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::ImageFormatProperties imageFormatProperties = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryFeatureFlagsNV externalMemoryFeatures = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV exportFromImportedHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV compatibleHandleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalImageFormatPropertiesNV ) == sizeof( VkExternalImageFormatPropertiesNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalImageFormatPropertiesNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalMemoryBufferCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryBufferCreateInfo( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryBufferCreateInfo( ExternalMemoryBufferCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExternalMemoryBufferCreateInfo & operator=( ExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalMemoryBufferCreateInfo ) - offsetof( ExternalMemoryBufferCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryBufferCreateInfo( VkExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalMemoryBufferCreateInfo& operator=( VkExternalMemoryBufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalMemoryBufferCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryBufferCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryBufferCreateInfo & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalMemoryBufferCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalMemoryBufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalMemoryBufferCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalMemoryBufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalMemoryBufferCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalMemoryBufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalMemoryBufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryBufferCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalMemoryBufferCreateInfo ) == sizeof( VkExternalMemoryBufferCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalMemoryBufferCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalMemoryImageCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfo( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfo( ExternalMemoryImageCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExternalMemoryImageCreateInfo & operator=( ExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalMemoryImageCreateInfo ) - offsetof( ExternalMemoryImageCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfo( VkExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfo& operator=( VkExternalMemoryImageCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfo & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalMemoryImageCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalMemoryImageCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalMemoryImageCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalMemoryImageCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalMemoryImageCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalMemoryImageCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalMemoryImageCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryImageCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlags handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalMemoryImageCreateInfo ) == sizeof( VkExternalMemoryImageCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalMemoryImageCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalMemoryImageCreateInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfoNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleTypes( handleTypes_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalMemoryImageCreateInfoNV( ExternalMemoryImageCreateInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleTypes( rhs.handleTypes )
|
||||
{}
|
||||
|
||||
ExternalMemoryImageCreateInfoNV & operator=( ExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalMemoryImageCreateInfoNV ) - offsetof( ExternalMemoryImageCreateInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfoNV( VkExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfoNV& operator=( VkExternalMemoryImageCreateInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalMemoryImageCreateInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalMemoryImageCreateInfoNV & setHandleTypes( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleTypes = handleTypes_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalMemoryImageCreateInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalMemoryImageCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalMemoryImageCreateInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalMemoryImageCreateInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalMemoryImageCreateInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalMemoryImageCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleTypes == rhs.handleTypes );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalMemoryImageCreateInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalMemoryImageCreateInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleTypes = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalMemoryImageCreateInfoNV ) == sizeof( VkExternalMemoryImageCreateInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalMemoryImageCreateInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ExternalSemaphoreProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ExternalSemaphoreProperties( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags compatibleHandleTypes_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreFeatureFlags externalSemaphoreFeatures_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: exportFromImportedHandleTypes( exportFromImportedHandleTypes_ )
|
||||
, compatibleHandleTypes( compatibleHandleTypes_ )
|
||||
, externalSemaphoreFeatures( externalSemaphoreFeatures_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ExternalSemaphoreProperties( ExternalSemaphoreProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, exportFromImportedHandleTypes( rhs.exportFromImportedHandleTypes )
|
||||
, compatibleHandleTypes( rhs.compatibleHandleTypes )
|
||||
, externalSemaphoreFeatures( rhs.externalSemaphoreFeatures )
|
||||
{}
|
||||
|
||||
ExternalSemaphoreProperties & operator=( ExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ExternalSemaphoreProperties ) - offsetof( ExternalSemaphoreProperties, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ExternalSemaphoreProperties( VkExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ExternalSemaphoreProperties& operator=( VkExternalSemaphoreProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ExternalSemaphoreProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkExternalSemaphoreProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkExternalSemaphoreProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkExternalSemaphoreProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkExternalSemaphoreProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ExternalSemaphoreProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( ExternalSemaphoreProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( exportFromImportedHandleTypes == rhs.exportFromImportedHandleTypes )
|
||||
&& ( compatibleHandleTypes == rhs.compatibleHandleTypes )
|
||||
&& ( externalSemaphoreFeatures == rhs.externalSemaphoreFeatures );
|
||||
}
|
||||
|
||||
bool operator!=( ExternalSemaphoreProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eExternalSemaphoreProperties;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags exportFromImportedHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlags compatibleHandleTypes = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreFeatureFlags externalSemaphoreFeatures = {};
|
||||
};
|
||||
static_assert( sizeof( ExternalSemaphoreProperties ) == sizeof( VkExternalSemaphoreProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ExternalSemaphoreProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,321 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFence.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct FenceCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FenceCreateInfo( VULKAN_HPP_NAMESPACE::FenceCreateFlags flags_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FenceCreateInfo( FenceCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
{}
|
||||
|
||||
FenceCreateInfo & operator=( FenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FenceCreateInfo ) - offsetof( FenceCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceCreateInfo( VkFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FenceCreateInfo& operator=( VkFenceCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FenceCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::FenceCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFenceCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFenceCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkFenceCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFenceCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FenceCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( FenceCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags );
|
||||
}
|
||||
|
||||
bool operator!=( FenceCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::FenceCreateFlags flags = {};
|
||||
};
|
||||
static_assert( sizeof( FenceCreateInfo ) == sizeof( VkFenceCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FenceCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct FenceGetFdInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FenceGetFdInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT
|
||||
: fence( fence_ )
|
||||
, handleType( handleType_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FenceGetFdInfoKHR( FenceGetFdInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, fence( rhs.fence )
|
||||
, handleType( rhs.handleType )
|
||||
{}
|
||||
|
||||
FenceGetFdInfoKHR & operator=( FenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FenceGetFdInfoKHR ) - offsetof( FenceGetFdInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetFdInfoKHR( VkFenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FenceGetFdInfoKHR& operator=( VkFenceGetFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FenceGetFdInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetFdInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetFdInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fence = fence_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetFdInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFenceGetFdInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFenceGetFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkFenceGetFdInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFenceGetFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FenceGetFdInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( FenceGetFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( fence == rhs.fence )
|
||||
&& ( handleType == rhs.handleType );
|
||||
}
|
||||
|
||||
bool operator!=( FenceGetFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceGetFdInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Fence fence = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd;
|
||||
};
|
||||
static_assert( sizeof( FenceGetFdInfoKHR ) == sizeof( VkFenceGetFdInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FenceGetFdInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct FenceGetWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FenceGetWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd ) VULKAN_HPP_NOEXCEPT
|
||||
: fence( fence_ )
|
||||
, handleType( handleType_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FenceGetWin32HandleInfoKHR( FenceGetWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, fence( rhs.fence )
|
||||
, handleType( rhs.handleType )
|
||||
{}
|
||||
|
||||
FenceGetWin32HandleInfoKHR & operator=( FenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FenceGetWin32HandleInfoKHR ) - offsetof( FenceGetWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetWin32HandleInfoKHR( VkFenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FenceGetWin32HandleInfoKHR& operator=( VkFenceGetWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FenceGetWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetWin32HandleInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fence = fence_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FenceGetWin32HandleInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFenceGetWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFenceGetWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkFenceGetWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFenceGetWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FenceGetWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( FenceGetWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( fence == rhs.fence )
|
||||
&& ( handleType == rhs.handleType );
|
||||
}
|
||||
|
||||
bool operator!=( FenceGetWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFenceGetWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Fence fence = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd;
|
||||
};
|
||||
static_assert( sizeof( FenceGetWin32HandleInfoKHR ) == sizeof( VkFenceGetWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FenceGetWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,142 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct FilterCubicImageViewImageFormatPropertiesEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FilterCubicImageViewImageFormatPropertiesEXT( VULKAN_HPP_NAMESPACE::Bool32 filterCubic_ = {},
|
||||
VULKAN_HPP_NAMESPACE::Bool32 filterCubicMinmax_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: filterCubic( filterCubic_ )
|
||||
, filterCubicMinmax( filterCubicMinmax_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FilterCubicImageViewImageFormatPropertiesEXT( FilterCubicImageViewImageFormatPropertiesEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, filterCubic( rhs.filterCubic )
|
||||
, filterCubicMinmax( rhs.filterCubicMinmax )
|
||||
{}
|
||||
|
||||
FilterCubicImageViewImageFormatPropertiesEXT & operator=( FilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FilterCubicImageViewImageFormatPropertiesEXT ) - offsetof( FilterCubicImageViewImageFormatPropertiesEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FilterCubicImageViewImageFormatPropertiesEXT( VkFilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FilterCubicImageViewImageFormatPropertiesEXT& operator=( VkFilterCubicImageViewImageFormatPropertiesEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FilterCubicImageViewImageFormatPropertiesEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFilterCubicImageViewImageFormatPropertiesEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFilterCubicImageViewImageFormatPropertiesEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkFilterCubicImageViewImageFormatPropertiesEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFilterCubicImageViewImageFormatPropertiesEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FilterCubicImageViewImageFormatPropertiesEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( FilterCubicImageViewImageFormatPropertiesEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( filterCubic == rhs.filterCubic )
|
||||
&& ( filterCubicMinmax == rhs.filterCubicMinmax );
|
||||
}
|
||||
|
||||
bool operator!=( FilterCubicImageViewImageFormatPropertiesEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFilterCubicImageViewImageFormatPropertiesEXT;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 filterCubic = {};
|
||||
VULKAN_HPP_NAMESPACE::Bool32 filterCubicMinmax = {};
|
||||
};
|
||||
static_assert( sizeof( FilterCubicImageViewImageFormatPropertiesEXT ) == sizeof( VkFilterCubicImageViewImageFormatPropertiesEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FilterCubicImageViewImageFormatPropertiesEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,206 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct FormatProperties
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FormatProperties( VULKAN_HPP_NAMESPACE::FormatFeatureFlags linearTilingFeatures_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags optimalTilingFeatures_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags bufferFeatures_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: linearTilingFeatures( linearTilingFeatures_ )
|
||||
, optimalTilingFeatures( optimalTilingFeatures_ )
|
||||
, bufferFeatures( bufferFeatures_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FormatProperties( FormatProperties const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: linearTilingFeatures( rhs.linearTilingFeatures )
|
||||
, optimalTilingFeatures( rhs.optimalTilingFeatures )
|
||||
, bufferFeatures( rhs.bufferFeatures )
|
||||
{}
|
||||
|
||||
FormatProperties & operator=( FormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( FormatProperties ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FormatProperties( VkFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FormatProperties& operator=( VkFormatProperties const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FormatProperties const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFormatProperties const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFormatProperties*>( this );
|
||||
}
|
||||
|
||||
operator VkFormatProperties &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFormatProperties*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FormatProperties const& ) const = default;
|
||||
#else
|
||||
bool operator==( FormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( linearTilingFeatures == rhs.linearTilingFeatures )
|
||||
&& ( optimalTilingFeatures == rhs.optimalTilingFeatures )
|
||||
&& ( bufferFeatures == rhs.bufferFeatures );
|
||||
}
|
||||
|
||||
bool operator!=( FormatProperties const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags linearTilingFeatures = {};
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags optimalTilingFeatures = {};
|
||||
VULKAN_HPP_NAMESPACE::FormatFeatureFlags bufferFeatures = {};
|
||||
};
|
||||
static_assert( sizeof( FormatProperties ) == sizeof( VkFormatProperties ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FormatProperties>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct FormatProperties2
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FormatProperties2( VULKAN_HPP_NAMESPACE::FormatProperties formatProperties_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: formatProperties( formatProperties_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FormatProperties2( FormatProperties2 const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, formatProperties( rhs.formatProperties )
|
||||
{}
|
||||
|
||||
FormatProperties2 & operator=( FormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FormatProperties2 ) - offsetof( FormatProperties2, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FormatProperties2( VkFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FormatProperties2& operator=( VkFormatProperties2 const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FormatProperties2 const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFormatProperties2 const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFormatProperties2*>( this );
|
||||
}
|
||||
|
||||
operator VkFormatProperties2 &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFormatProperties2*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FormatProperties2 const& ) const = default;
|
||||
#else
|
||||
bool operator==( FormatProperties2 const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( formatProperties == rhs.formatProperties );
|
||||
}
|
||||
|
||||
bool operator!=( FormatProperties2 const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFormatProperties2;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::FormatProperties formatProperties = {};
|
||||
};
|
||||
static_assert( sizeof( FormatProperties2 ) == sizeof( VkFormatProperties2 ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FormatProperties2>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,520 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct FramebufferAttachmentImageInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FramebufferAttachmentImageInfoKHR( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ = {},
|
||||
uint32_t width_ = {},
|
||||
uint32_t height_ = {},
|
||||
uint32_t layerCount_ = {},
|
||||
uint32_t viewFormatCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::Format* pViewFormats_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, usage( usage_ )
|
||||
, width( width_ )
|
||||
, height( height_ )
|
||||
, layerCount( layerCount_ )
|
||||
, viewFormatCount( viewFormatCount_ )
|
||||
, pViewFormats( pViewFormats_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FramebufferAttachmentImageInfoKHR( FramebufferAttachmentImageInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, usage( rhs.usage )
|
||||
, width( rhs.width )
|
||||
, height( rhs.height )
|
||||
, layerCount( rhs.layerCount )
|
||||
, viewFormatCount( rhs.viewFormatCount )
|
||||
, pViewFormats( rhs.pViewFormats )
|
||||
{}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & operator=( FramebufferAttachmentImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FramebufferAttachmentImageInfoKHR ) - offsetof( FramebufferAttachmentImageInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR( VkFramebufferAttachmentImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR& operator=( VkFramebufferAttachmentImageInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::ImageCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setUsage( VULKAN_HPP_NAMESPACE::ImageUsageFlags usage_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
usage = usage_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
width = width_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
height = height_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setLayerCount( uint32_t layerCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layerCount = layerCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setViewFormatCount( uint32_t viewFormatCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
viewFormatCount = viewFormatCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentImageInfoKHR & setPViewFormats( const VULKAN_HPP_NAMESPACE::Format* pViewFormats_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pViewFormats = pViewFormats_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFramebufferAttachmentImageInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFramebufferAttachmentImageInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkFramebufferAttachmentImageInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFramebufferAttachmentImageInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FramebufferAttachmentImageInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( FramebufferAttachmentImageInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( usage == rhs.usage )
|
||||
&& ( width == rhs.width )
|
||||
&& ( height == rhs.height )
|
||||
&& ( layerCount == rhs.layerCount )
|
||||
&& ( viewFormatCount == rhs.viewFormatCount )
|
||||
&& ( pViewFormats == rhs.pViewFormats );
|
||||
}
|
||||
|
||||
bool operator!=( FramebufferAttachmentImageInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferAttachmentImageInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ImageCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ImageUsageFlags usage = {};
|
||||
uint32_t width = {};
|
||||
uint32_t height = {};
|
||||
uint32_t layerCount = {};
|
||||
uint32_t viewFormatCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::Format* pViewFormats = {};
|
||||
};
|
||||
static_assert( sizeof( FramebufferAttachmentImageInfoKHR ) == sizeof( VkFramebufferAttachmentImageInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FramebufferAttachmentImageInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct FramebufferAttachmentsCreateInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FramebufferAttachmentsCreateInfoKHR( uint32_t attachmentImageInfoCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfoKHR* pAttachmentImageInfos_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: attachmentImageInfoCount( attachmentImageInfoCount_ )
|
||||
, pAttachmentImageInfos( pAttachmentImageInfos_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FramebufferAttachmentsCreateInfoKHR( FramebufferAttachmentsCreateInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, attachmentImageInfoCount( rhs.attachmentImageInfoCount )
|
||||
, pAttachmentImageInfos( rhs.pAttachmentImageInfos )
|
||||
{}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR & operator=( FramebufferAttachmentsCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FramebufferAttachmentsCreateInfoKHR ) - offsetof( FramebufferAttachmentsCreateInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR( VkFramebufferAttachmentsCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR& operator=( VkFramebufferAttachmentsCreateInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferAttachmentsCreateInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR & setAttachmentImageInfoCount( uint32_t attachmentImageInfoCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
attachmentImageInfoCount = attachmentImageInfoCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferAttachmentsCreateInfoKHR & setPAttachmentImageInfos( const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfoKHR* pAttachmentImageInfos_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttachmentImageInfos = pAttachmentImageInfos_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFramebufferAttachmentsCreateInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFramebufferAttachmentsCreateInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkFramebufferAttachmentsCreateInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFramebufferAttachmentsCreateInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FramebufferAttachmentsCreateInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( FramebufferAttachmentsCreateInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( attachmentImageInfoCount == rhs.attachmentImageInfoCount )
|
||||
&& ( pAttachmentImageInfos == rhs.pAttachmentImageInfos );
|
||||
}
|
||||
|
||||
bool operator!=( FramebufferAttachmentsCreateInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferAttachmentsCreateInfoKHR;
|
||||
const void* pNext = {};
|
||||
uint32_t attachmentImageInfoCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::FramebufferAttachmentImageInfoKHR* pAttachmentImageInfos = {};
|
||||
};
|
||||
static_assert( sizeof( FramebufferAttachmentsCreateInfoKHR ) == sizeof( VkFramebufferAttachmentsCreateInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FramebufferAttachmentsCreateInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct FramebufferCreateInfo
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FramebufferCreateInfo( VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::RenderPass renderPass_ = {},
|
||||
uint32_t attachmentCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::ImageView* pAttachments_ = {},
|
||||
uint32_t width_ = {},
|
||||
uint32_t height_ = {},
|
||||
uint32_t layers_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, renderPass( renderPass_ )
|
||||
, attachmentCount( attachmentCount_ )
|
||||
, pAttachments( pAttachments_ )
|
||||
, width( width_ )
|
||||
, height( height_ )
|
||||
, layers( layers_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FramebufferCreateInfo( FramebufferCreateInfo const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, renderPass( rhs.renderPass )
|
||||
, attachmentCount( rhs.attachmentCount )
|
||||
, pAttachments( rhs.pAttachments )
|
||||
, width( rhs.width )
|
||||
, height( rhs.height )
|
||||
, layers( rhs.layers )
|
||||
{}
|
||||
|
||||
FramebufferCreateInfo & operator=( FramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FramebufferCreateInfo ) - offsetof( FramebufferCreateInfo, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo( VkFramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo& operator=( VkFramebufferCreateInfo const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferCreateInfo const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setFlags( VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setRenderPass( VULKAN_HPP_NAMESPACE::RenderPass renderPass_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
renderPass = renderPass_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setAttachmentCount( uint32_t attachmentCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
attachmentCount = attachmentCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setPAttachments( const VULKAN_HPP_NAMESPACE::ImageView* pAttachments_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pAttachments = pAttachments_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setWidth( uint32_t width_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
width = width_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setHeight( uint32_t height_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
height = height_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferCreateInfo & setLayers( uint32_t layers_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
layers = layers_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFramebufferCreateInfo const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFramebufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
operator VkFramebufferCreateInfo &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFramebufferCreateInfo*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FramebufferCreateInfo const& ) const = default;
|
||||
#else
|
||||
bool operator==( FramebufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( renderPass == rhs.renderPass )
|
||||
&& ( attachmentCount == rhs.attachmentCount )
|
||||
&& ( pAttachments == rhs.pAttachments )
|
||||
&& ( width == rhs.width )
|
||||
&& ( height == rhs.height )
|
||||
&& ( layers == rhs.layers );
|
||||
}
|
||||
|
||||
bool operator!=( FramebufferCreateInfo const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferCreateInfo;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::FramebufferCreateFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::RenderPass renderPass = {};
|
||||
uint32_t attachmentCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::ImageView* pAttachments = {};
|
||||
uint32_t width = {};
|
||||
uint32_t height = {};
|
||||
uint32_t layers = {};
|
||||
};
|
||||
static_assert( sizeof( FramebufferCreateInfo ) == sizeof( VkFramebufferCreateInfo ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FramebufferCreateInfo>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct FramebufferMixedSamplesCombinationNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR FramebufferMixedSamplesCombinationNV( VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode_ = VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge,
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples_ = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1,
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags depthStencilSamples_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags colorSamples_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: coverageReductionMode( coverageReductionMode_ )
|
||||
, rasterizationSamples( rasterizationSamples_ )
|
||||
, depthStencilSamples( depthStencilSamples_ )
|
||||
, colorSamples( colorSamples_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR FramebufferMixedSamplesCombinationNV( FramebufferMixedSamplesCombinationNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, coverageReductionMode( rhs.coverageReductionMode )
|
||||
, rasterizationSamples( rhs.rasterizationSamples )
|
||||
, depthStencilSamples( rhs.depthStencilSamples )
|
||||
, colorSamples( rhs.colorSamples )
|
||||
{}
|
||||
|
||||
FramebufferMixedSamplesCombinationNV & operator=( FramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( FramebufferMixedSamplesCombinationNV ) - offsetof( FramebufferMixedSamplesCombinationNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
FramebufferMixedSamplesCombinationNV( VkFramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
FramebufferMixedSamplesCombinationNV& operator=( VkFramebufferMixedSamplesCombinationNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::FramebufferMixedSamplesCombinationNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkFramebufferMixedSamplesCombinationNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkFramebufferMixedSamplesCombinationNV*>( this );
|
||||
}
|
||||
|
||||
operator VkFramebufferMixedSamplesCombinationNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkFramebufferMixedSamplesCombinationNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( FramebufferMixedSamplesCombinationNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( FramebufferMixedSamplesCombinationNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( coverageReductionMode == rhs.coverageReductionMode )
|
||||
&& ( rasterizationSamples == rhs.rasterizationSamples )
|
||||
&& ( depthStencilSamples == rhs.depthStencilSamples )
|
||||
&& ( colorSamples == rhs.colorSamples );
|
||||
}
|
||||
|
||||
bool operator!=( FramebufferMixedSamplesCombinationNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eFramebufferMixedSamplesCombinationNV;
|
||||
void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::CoverageReductionModeNV coverageReductionMode = VULKAN_HPP_NAMESPACE::CoverageReductionModeNV::eMerge;
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlagBits rasterizationSamples = VULKAN_HPP_NAMESPACE::SampleCountFlagBits::e1;
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags depthStencilSamples = {};
|
||||
VULKAN_HPP_NAMESPACE::SampleCountFlags colorSamples = {};
|
||||
};
|
||||
static_assert( sizeof( FramebufferMixedSamplesCombinationNV ) == sizeof( VkFramebufferMixedSamplesCombinationNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<FramebufferMixedSamplesCombinationNV>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,79 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,305 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct XYColorEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR XYColorEXT( float x_ = {},
|
||||
float y_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: x( x_ )
|
||||
, y( y_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR XYColorEXT( XYColorEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: x( rhs.x )
|
||||
, y( rhs.y )
|
||||
{}
|
||||
|
||||
XYColorEXT & operator=( XYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( XYColorEXT ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
XYColorEXT( VkXYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
XYColorEXT& operator=( VkXYColorEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::XYColorEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
XYColorEXT & setX( float x_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
x = x_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
XYColorEXT & setY( float y_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
y = y_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkXYColorEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkXYColorEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkXYColorEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkXYColorEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( XYColorEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( XYColorEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( x == rhs.x )
|
||||
&& ( y == rhs.y );
|
||||
}
|
||||
|
||||
bool operator!=( XYColorEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
float x = {};
|
||||
float y = {};
|
||||
};
|
||||
static_assert( sizeof( XYColorEXT ) == sizeof( VkXYColorEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<XYColorEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct HdrMetadataEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR HdrMetadataEXT( VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryRed_ = {},
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryGreen_ = {},
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryBlue_ = {},
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT whitePoint_ = {},
|
||||
float maxLuminance_ = {},
|
||||
float minLuminance_ = {},
|
||||
float maxContentLightLevel_ = {},
|
||||
float maxFrameAverageLightLevel_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: displayPrimaryRed( displayPrimaryRed_ )
|
||||
, displayPrimaryGreen( displayPrimaryGreen_ )
|
||||
, displayPrimaryBlue( displayPrimaryBlue_ )
|
||||
, whitePoint( whitePoint_ )
|
||||
, maxLuminance( maxLuminance_ )
|
||||
, minLuminance( minLuminance_ )
|
||||
, maxContentLightLevel( maxContentLightLevel_ )
|
||||
, maxFrameAverageLightLevel( maxFrameAverageLightLevel_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR HdrMetadataEXT( HdrMetadataEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, displayPrimaryRed( rhs.displayPrimaryRed )
|
||||
, displayPrimaryGreen( rhs.displayPrimaryGreen )
|
||||
, displayPrimaryBlue( rhs.displayPrimaryBlue )
|
||||
, whitePoint( rhs.whitePoint )
|
||||
, maxLuminance( rhs.maxLuminance )
|
||||
, minLuminance( rhs.minLuminance )
|
||||
, maxContentLightLevel( rhs.maxContentLightLevel )
|
||||
, maxFrameAverageLightLevel( rhs.maxFrameAverageLightLevel )
|
||||
{}
|
||||
|
||||
HdrMetadataEXT & operator=( HdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( HdrMetadataEXT ) - offsetof( HdrMetadataEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT( VkHdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
HdrMetadataEXT& operator=( VkHdrMetadataEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::HdrMetadataEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setDisplayPrimaryRed( VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryRed_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
displayPrimaryRed = displayPrimaryRed_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setDisplayPrimaryGreen( VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryGreen_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
displayPrimaryGreen = displayPrimaryGreen_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setDisplayPrimaryBlue( VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryBlue_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
displayPrimaryBlue = displayPrimaryBlue_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setWhitePoint( VULKAN_HPP_NAMESPACE::XYColorEXT whitePoint_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
whitePoint = whitePoint_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setMaxLuminance( float maxLuminance_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
maxLuminance = maxLuminance_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setMinLuminance( float minLuminance_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
minLuminance = minLuminance_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setMaxContentLightLevel( float maxContentLightLevel_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
maxContentLightLevel = maxContentLightLevel_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HdrMetadataEXT & setMaxFrameAverageLightLevel( float maxFrameAverageLightLevel_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
maxFrameAverageLightLevel = maxFrameAverageLightLevel_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkHdrMetadataEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkHdrMetadataEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkHdrMetadataEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkHdrMetadataEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( HdrMetadataEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( HdrMetadataEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( displayPrimaryRed == rhs.displayPrimaryRed )
|
||||
&& ( displayPrimaryGreen == rhs.displayPrimaryGreen )
|
||||
&& ( displayPrimaryBlue == rhs.displayPrimaryBlue )
|
||||
&& ( whitePoint == rhs.whitePoint )
|
||||
&& ( maxLuminance == rhs.maxLuminance )
|
||||
&& ( minLuminance == rhs.minLuminance )
|
||||
&& ( maxContentLightLevel == rhs.maxContentLightLevel )
|
||||
&& ( maxFrameAverageLightLevel == rhs.maxFrameAverageLightLevel );
|
||||
}
|
||||
|
||||
bool operator!=( HdrMetadataEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eHdrMetadataEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryRed = {};
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryGreen = {};
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT displayPrimaryBlue = {};
|
||||
VULKAN_HPP_NAMESPACE::XYColorEXT whitePoint = {};
|
||||
float maxLuminance = {};
|
||||
float minLuminance = {};
|
||||
float maxContentLightLevel = {};
|
||||
float maxFrameAverageLightLevel = {};
|
||||
};
|
||||
static_assert( sizeof( HdrMetadataEXT ) == sizeof( VkHdrMetadataEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<HdrMetadataEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,155 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
#include "VkHdr.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct HeadlessSurfaceCreateInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR HeadlessSurfaceCreateInfoEXT( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR HeadlessSurfaceCreateInfoEXT( HeadlessSurfaceCreateInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
{}
|
||||
|
||||
HeadlessSurfaceCreateInfoEXT & operator=( HeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( HeadlessSurfaceCreateInfoEXT ) - offsetof( HeadlessSurfaceCreateInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
HeadlessSurfaceCreateInfoEXT( VkHeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
HeadlessSurfaceCreateInfoEXT& operator=( VkHeadlessSurfaceCreateInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
HeadlessSurfaceCreateInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
HeadlessSurfaceCreateInfoEXT & setFlags( VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkHeadlessSurfaceCreateInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkHeadlessSurfaceCreateInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkHeadlessSurfaceCreateInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkHeadlessSurfaceCreateInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( HeadlessSurfaceCreateInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( HeadlessSurfaceCreateInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags );
|
||||
}
|
||||
|
||||
bool operator!=( HeadlessSurfaceCreateInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eHeadlessSurfaceCreateInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::HeadlessSurfaceCreateFlagsEXT flags = {};
|
||||
};
|
||||
static_assert( sizeof( HeadlessSurfaceCreateInfoEXT ) == sizeof( VkHeadlessSurfaceCreateInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<HeadlessSurfaceCreateInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,169 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
#include "VkHdr.hpp"
|
||||
#include "VkHeadless.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
#ifdef VK_USE_PLATFORM_IOS_MVK
|
||||
struct IOSSurfaceCreateInfoMVK
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR IOSSurfaceCreateInfoMVK( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags_ = {},
|
||||
const void* pView_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: flags( flags_ )
|
||||
, pView( pView_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR IOSSurfaceCreateInfoMVK( IOSSurfaceCreateInfoMVK const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, flags( rhs.flags )
|
||||
, pView( rhs.pView )
|
||||
{}
|
||||
|
||||
IOSSurfaceCreateInfoMVK & operator=( IOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( IOSSurfaceCreateInfoMVK ) - offsetof( IOSSurfaceCreateInfoMVK, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
IOSSurfaceCreateInfoMVK( VkIOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
IOSSurfaceCreateInfoMVK& operator=( VkIOSSurfaceCreateInfoMVK const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::IOSSurfaceCreateInfoMVK const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
IOSSurfaceCreateInfoMVK & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IOSSurfaceCreateInfoMVK & setFlags( VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IOSSurfaceCreateInfoMVK & setPView( const void* pView_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pView = pView_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkIOSSurfaceCreateInfoMVK const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkIOSSurfaceCreateInfoMVK*>( this );
|
||||
}
|
||||
|
||||
operator VkIOSSurfaceCreateInfoMVK &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkIOSSurfaceCreateInfoMVK*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( IOSSurfaceCreateInfoMVK const& ) const = default;
|
||||
#else
|
||||
bool operator==( IOSSurfaceCreateInfoMVK const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( pView == rhs.pView );
|
||||
}
|
||||
|
||||
bool operator!=( IOSSurfaceCreateInfoMVK const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eIosSurfaceCreateInfoMVK;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::IOSSurfaceCreateFlagsMVK flags = {};
|
||||
const void* pView = {};
|
||||
};
|
||||
static_assert( sizeof( IOSSurfaceCreateInfoMVK ) == sizeof( VkIOSSurfaceCreateInfoMVK ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<IOSSurfaceCreateInfoMVK>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_IOS_MVK*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
File diff suppressed because it is too large
Load Diff
@ -1,970 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkImage.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
#include "VkHdr.hpp"
|
||||
#include "VkHeadless.hpp"
|
||||
#include "VkI.hpp"
|
||||
#include "VkImport.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
#ifdef VK_USE_PLATFORM_ANDROID_KHR
|
||||
struct ImportAndroidHardwareBufferInfoANDROID
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportAndroidHardwareBufferInfoANDROID( struct AHardwareBuffer* buffer_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: buffer( buffer_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportAndroidHardwareBufferInfoANDROID( ImportAndroidHardwareBufferInfoANDROID const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, buffer( rhs.buffer )
|
||||
{}
|
||||
|
||||
ImportAndroidHardwareBufferInfoANDROID & operator=( ImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportAndroidHardwareBufferInfoANDROID ) - offsetof( ImportAndroidHardwareBufferInfoANDROID, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportAndroidHardwareBufferInfoANDROID( VkImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportAndroidHardwareBufferInfoANDROID& operator=( VkImportAndroidHardwareBufferInfoANDROID const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportAndroidHardwareBufferInfoANDROID const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportAndroidHardwareBufferInfoANDROID & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportAndroidHardwareBufferInfoANDROID & setBuffer( struct AHardwareBuffer* buffer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
buffer = buffer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportAndroidHardwareBufferInfoANDROID const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportAndroidHardwareBufferInfoANDROID*>( this );
|
||||
}
|
||||
|
||||
operator VkImportAndroidHardwareBufferInfoANDROID &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportAndroidHardwareBufferInfoANDROID*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportAndroidHardwareBufferInfoANDROID const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportAndroidHardwareBufferInfoANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( buffer == rhs.buffer );
|
||||
}
|
||||
|
||||
bool operator!=( ImportAndroidHardwareBufferInfoANDROID const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportAndroidHardwareBufferInfoANDROID;
|
||||
const void* pNext = {};
|
||||
struct AHardwareBuffer* buffer = {};
|
||||
};
|
||||
static_assert( sizeof( ImportAndroidHardwareBufferInfoANDROID ) == sizeof( VkImportAndroidHardwareBufferInfoANDROID ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportAndroidHardwareBufferInfoANDROID>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_ANDROID_KHR*/
|
||||
|
||||
struct ImportFenceFdInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportFenceFdInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd,
|
||||
int fd_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: fence( fence_ )
|
||||
, flags( flags_ )
|
||||
, handleType( handleType_ )
|
||||
, fd( fd_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportFenceFdInfoKHR( ImportFenceFdInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, fence( rhs.fence )
|
||||
, flags( rhs.flags )
|
||||
, handleType( rhs.handleType )
|
||||
, fd( rhs.fd )
|
||||
{}
|
||||
|
||||
ImportFenceFdInfoKHR & operator=( ImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportFenceFdInfoKHR ) - offsetof( ImportFenceFdInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR( VkImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR& operator=( VkImportFenceFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportFenceFdInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fence = fence_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fd = fd_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportFenceFdInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportFenceFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportFenceFdInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportFenceFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportFenceFdInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportFenceFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( fence == rhs.fence )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( fd == rhs.fd );
|
||||
}
|
||||
|
||||
bool operator!=( ImportFenceFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportFenceFdInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Fence fence = {};
|
||||
VULKAN_HPP_NAMESPACE::FenceImportFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd;
|
||||
int fd = {};
|
||||
};
|
||||
static_assert( sizeof( ImportFenceFdInfoKHR ) == sizeof( VkImportFenceFdInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportFenceFdInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportFenceWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportFenceWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::Fence fence_ = {},
|
||||
VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd,
|
||||
HANDLE handle_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: fence( fence_ )
|
||||
, flags( flags_ )
|
||||
, handleType( handleType_ )
|
||||
, handle( handle_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportFenceWin32HandleInfoKHR( ImportFenceWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, fence( rhs.fence )
|
||||
, flags( rhs.flags )
|
||||
, handleType( rhs.handleType )
|
||||
, handle( rhs.handle )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & operator=( ImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportFenceWin32HandleInfoKHR ) - offsetof( ImportFenceWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR( VkImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR& operator=( VkImportFenceWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportFenceWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setFence( VULKAN_HPP_NAMESPACE::Fence fence_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fence = fence_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::FenceImportFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handle = handle_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportFenceWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportFenceWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportFenceWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportFenceWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportFenceWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportFenceWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportFenceWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( fence == rhs.fence )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( handle == rhs.handle )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ImportFenceWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportFenceWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Fence fence = {};
|
||||
VULKAN_HPP_NAMESPACE::FenceImportFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalFenceHandleTypeFlagBits::eOpaqueFd;
|
||||
HANDLE handle = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ImportFenceWin32HandleInfoKHR ) == sizeof( VkImportFenceWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportFenceWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
struct ImportMemoryFdInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryFdInfoKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd,
|
||||
int fd_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleType( handleType_ )
|
||||
, fd( fd_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryFdInfoKHR( ImportMemoryFdInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleType( rhs.handleType )
|
||||
, fd( rhs.fd )
|
||||
{}
|
||||
|
||||
ImportMemoryFdInfoKHR & operator=( ImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportMemoryFdInfoKHR ) - offsetof( ImportMemoryFdInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryFdInfoKHR( VkImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportMemoryFdInfoKHR& operator=( VkImportMemoryFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportMemoryFdInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryFdInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryFdInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fd = fd_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportMemoryFdInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportMemoryFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportMemoryFdInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportMemoryFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportMemoryFdInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportMemoryFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( fd == rhs.fd );
|
||||
}
|
||||
|
||||
bool operator!=( ImportMemoryFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryFdInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd;
|
||||
int fd = {};
|
||||
};
|
||||
static_assert( sizeof( ImportMemoryFdInfoKHR ) == sizeof( VkImportMemoryFdInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportMemoryFdInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct ImportMemoryHostPointerInfoEXT
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryHostPointerInfoEXT( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd,
|
||||
void* pHostPointer_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleType( handleType_ )
|
||||
, pHostPointer( pHostPointer_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryHostPointerInfoEXT( ImportMemoryHostPointerInfoEXT const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleType( rhs.handleType )
|
||||
, pHostPointer( rhs.pHostPointer )
|
||||
{}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT & operator=( ImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportMemoryHostPointerInfoEXT ) - offsetof( ImportMemoryHostPointerInfoEXT, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT( VkImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT& operator=( VkImportMemoryHostPointerInfoEXT const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportMemoryHostPointerInfoEXT const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT & setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryHostPointerInfoEXT & setPHostPointer( void* pHostPointer_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pHostPointer = pHostPointer_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportMemoryHostPointerInfoEXT const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportMemoryHostPointerInfoEXT*>( this );
|
||||
}
|
||||
|
||||
operator VkImportMemoryHostPointerInfoEXT &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportMemoryHostPointerInfoEXT*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportMemoryHostPointerInfoEXT const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportMemoryHostPointerInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( pHostPointer == rhs.pHostPointer );
|
||||
}
|
||||
|
||||
bool operator!=( ImportMemoryHostPointerInfoEXT const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryHostPointerInfoEXT;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd;
|
||||
void* pHostPointer = {};
|
||||
};
|
||||
static_assert( sizeof( ImportMemoryHostPointerInfoEXT ) == sizeof( VkImportMemoryHostPointerInfoEXT ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportMemoryHostPointerInfoEXT>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportMemoryWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd,
|
||||
HANDLE handle_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleType( handleType_ )
|
||||
, handle( handle_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryWin32HandleInfoKHR( ImportMemoryWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleType( rhs.handleType )
|
||||
, handle( rhs.handle )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR & operator=( ImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportMemoryWin32HandleInfoKHR ) - offsetof( ImportMemoryWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR( VkImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR& operator=( VkImportMemoryWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handle = handle_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportMemoryWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportMemoryWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportMemoryWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportMemoryWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportMemoryWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportMemoryWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( handle == rhs.handle )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ImportMemoryWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagBits::eOpaqueFd;
|
||||
HANDLE handle = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ImportMemoryWin32HandleInfoKHR ) == sizeof( VkImportMemoryWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportMemoryWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportMemoryWin32HandleInfoNV
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryWin32HandleInfoNV( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType_ = {},
|
||||
HANDLE handle_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: handleType( handleType_ )
|
||||
, handle( handle_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportMemoryWin32HandleInfoNV( ImportMemoryWin32HandleInfoNV const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, handleType( rhs.handleType )
|
||||
, handle( rhs.handle )
|
||||
{}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV & operator=( ImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportMemoryWin32HandleInfoNV ) - offsetof( ImportMemoryWin32HandleInfoNV, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV( VkImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV& operator=( VkImportMemoryWin32HandleInfoNV const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportMemoryWin32HandleInfoNV const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV & setHandleType( VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportMemoryWin32HandleInfoNV & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handle = handle_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportMemoryWin32HandleInfoNV const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportMemoryWin32HandleInfoNV*>( this );
|
||||
}
|
||||
|
||||
operator VkImportMemoryWin32HandleInfoNV &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportMemoryWin32HandleInfoNV*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportMemoryWin32HandleInfoNV const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportMemoryWin32HandleInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( handle == rhs.handle );
|
||||
}
|
||||
|
||||
bool operator!=( ImportMemoryWin32HandleInfoNV const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportMemoryWin32HandleInfoNV;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalMemoryHandleTypeFlagsNV handleType = {};
|
||||
HANDLE handle = {};
|
||||
};
|
||||
static_assert( sizeof( ImportMemoryWin32HandleInfoNV ) == sizeof( VkImportMemoryWin32HandleInfoNV ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportMemoryWin32HandleInfoNV>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
|
||||
struct ImportSemaphoreFdInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportSemaphoreFdInfoKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd,
|
||||
int fd_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: semaphore( semaphore_ )
|
||||
, flags( flags_ )
|
||||
, handleType( handleType_ )
|
||||
, fd( fd_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportSemaphoreFdInfoKHR( ImportSemaphoreFdInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, semaphore( rhs.semaphore )
|
||||
, flags( rhs.flags )
|
||||
, handleType( rhs.handleType )
|
||||
, fd( rhs.fd )
|
||||
{}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & operator=( ImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportSemaphoreFdInfoKHR ) - offsetof( ImportSemaphoreFdInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR( VkImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR& operator=( VkImportSemaphoreFdInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportSemaphoreFdInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
semaphore = semaphore_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreFdInfoKHR & setFd( int fd_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
fd = fd_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportSemaphoreFdInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportSemaphoreFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportSemaphoreFdInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportSemaphoreFdInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportSemaphoreFdInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportSemaphoreFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( semaphore == rhs.semaphore )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( fd == rhs.fd );
|
||||
}
|
||||
|
||||
bool operator!=( ImportSemaphoreFdInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportSemaphoreFdInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Semaphore semaphore = {};
|
||||
VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd;
|
||||
int fd = {};
|
||||
};
|
||||
static_assert( sizeof( ImportSemaphoreFdInfoKHR ) == sizeof( VkImportSemaphoreFdInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportSemaphoreFdInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
#ifdef VK_USE_PLATFORM_WIN32_KHR
|
||||
struct ImportSemaphoreWin32HandleInfoKHR
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR ImportSemaphoreWin32HandleInfoKHR( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ = {},
|
||||
VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ = {},
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ = VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd,
|
||||
HANDLE handle_ = {},
|
||||
LPCWSTR name_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: semaphore( semaphore_ )
|
||||
, flags( flags_ )
|
||||
, handleType( handleType_ )
|
||||
, handle( handle_ )
|
||||
, name( name_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR ImportSemaphoreWin32HandleInfoKHR( ImportSemaphoreWin32HandleInfoKHR const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, semaphore( rhs.semaphore )
|
||||
, flags( rhs.flags )
|
||||
, handleType( rhs.handleType )
|
||||
, handle( rhs.handle )
|
||||
, name( rhs.name )
|
||||
{}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & operator=( ImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( ImportSemaphoreWin32HandleInfoKHR ) - offsetof( ImportSemaphoreWin32HandleInfoKHR, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR( VkImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR& operator=( VkImportSemaphoreWin32HandleInfoKHR const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::ImportSemaphoreWin32HandleInfoKHR const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setSemaphore( VULKAN_HPP_NAMESPACE::Semaphore semaphore_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
semaphore = semaphore_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setFlags( VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setHandleType( VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handleType = handleType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setHandle( HANDLE handle_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
handle = handle_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
ImportSemaphoreWin32HandleInfoKHR & setName( LPCWSTR name_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
name = name_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkImportSemaphoreWin32HandleInfoKHR const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkImportSemaphoreWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
operator VkImportSemaphoreWin32HandleInfoKHR &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkImportSemaphoreWin32HandleInfoKHR*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( ImportSemaphoreWin32HandleInfoKHR const& ) const = default;
|
||||
#else
|
||||
bool operator==( ImportSemaphoreWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( semaphore == rhs.semaphore )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( handleType == rhs.handleType )
|
||||
&& ( handle == rhs.handle )
|
||||
&& ( name == rhs.name );
|
||||
}
|
||||
|
||||
bool operator!=( ImportSemaphoreWin32HandleInfoKHR const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eImportSemaphoreWin32HandleInfoKHR;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::Semaphore semaphore = {};
|
||||
VULKAN_HPP_NAMESPACE::SemaphoreImportFlags flags = {};
|
||||
VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits handleType = VULKAN_HPP_NAMESPACE::ExternalSemaphoreHandleTypeFlagBits::eOpaqueFd;
|
||||
HANDLE handle = {};
|
||||
LPCWSTR name = {};
|
||||
};
|
||||
static_assert( sizeof( ImportSemaphoreWin32HandleInfoKHR ) == sizeof( VkImportSemaphoreWin32HandleInfoKHR ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<ImportSemaphoreWin32HandleInfoKHR>::value, "struct wrapper is not a standard layout!" );
|
||||
#endif /*VK_USE_PLATFORM_WIN32_KHR*/
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,289 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkImport.hpp"
|
||||
#include "VkImage.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
#include "VkHdr.hpp"
|
||||
#include "VkHeadless.hpp"
|
||||
#include "VkI.hpp"
|
||||
#include "VkIndirect.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct IndirectCommandsLayoutTokenNVX
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutTokenNVX( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType_ = VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX::ePipeline,
|
||||
uint32_t bindingUnit_ = {},
|
||||
uint32_t dynamicCount_ = {},
|
||||
uint32_t divisor_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: tokenType( tokenType_ )
|
||||
, bindingUnit( bindingUnit_ )
|
||||
, dynamicCount( dynamicCount_ )
|
||||
, divisor( divisor_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutTokenNVX( IndirectCommandsLayoutTokenNVX const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: tokenType( rhs.tokenType )
|
||||
, bindingUnit( rhs.bindingUnit )
|
||||
, dynamicCount( rhs.dynamicCount )
|
||||
, divisor( rhs.divisor )
|
||||
{}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX & operator=( IndirectCommandsLayoutTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( static_cast<void*>(this), &rhs, sizeof( IndirectCommandsLayoutTokenNVX ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX( VkIndirectCommandsLayoutTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX& operator=( VkIndirectCommandsLayoutTokenNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNVX const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX & setTokenType( VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
tokenType = tokenType_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX & setBindingUnit( uint32_t bindingUnit_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
bindingUnit = bindingUnit_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX & setDynamicCount( uint32_t dynamicCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
dynamicCount = dynamicCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutTokenNVX & setDivisor( uint32_t divisor_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
divisor = divisor_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsLayoutTokenNVX const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkIndirectCommandsLayoutTokenNVX*>( this );
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsLayoutTokenNVX &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkIndirectCommandsLayoutTokenNVX*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( IndirectCommandsLayoutTokenNVX const& ) const = default;
|
||||
#else
|
||||
bool operator==( IndirectCommandsLayoutTokenNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( tokenType == rhs.tokenType )
|
||||
&& ( bindingUnit == rhs.bindingUnit )
|
||||
&& ( dynamicCount == rhs.dynamicCount )
|
||||
&& ( divisor == rhs.divisor );
|
||||
}
|
||||
|
||||
bool operator!=( IndirectCommandsLayoutTokenNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX tokenType = VULKAN_HPP_NAMESPACE::IndirectCommandsTokenTypeNVX::ePipeline;
|
||||
uint32_t bindingUnit = {};
|
||||
uint32_t dynamicCount = {};
|
||||
uint32_t divisor = {};
|
||||
};
|
||||
static_assert( sizeof( IndirectCommandsLayoutTokenNVX ) == sizeof( VkIndirectCommandsLayoutTokenNVX ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<IndirectCommandsLayoutTokenNVX>::value, "struct wrapper is not a standard layout!" );
|
||||
|
||||
struct IndirectCommandsLayoutCreateInfoNVX
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutCreateInfoNVX( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics,
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNVX flags_ = {},
|
||||
uint32_t tokenCount_ = {},
|
||||
const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNVX* pTokens_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pipelineBindPoint( pipelineBindPoint_ )
|
||||
, flags( flags_ )
|
||||
, tokenCount( tokenCount_ )
|
||||
, pTokens( pTokens_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR IndirectCommandsLayoutCreateInfoNVX( IndirectCommandsLayoutCreateInfoNVX const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pipelineBindPoint( rhs.pipelineBindPoint )
|
||||
, flags( rhs.flags )
|
||||
, tokenCount( rhs.tokenCount )
|
||||
, pTokens( rhs.pTokens )
|
||||
{}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & operator=( IndirectCommandsLayoutCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( IndirectCommandsLayoutCreateInfoNVX ) - offsetof( IndirectCommandsLayoutCreateInfoNVX, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX( VkIndirectCommandsLayoutCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX& operator=( VkIndirectCommandsLayoutCreateInfoNVX const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutCreateInfoNVX const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & setPipelineBindPoint( VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pipelineBindPoint = pipelineBindPoint_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & setFlags( VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNVX flags_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
flags = flags_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & setTokenCount( uint32_t tokenCount_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
tokenCount = tokenCount_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
IndirectCommandsLayoutCreateInfoNVX & setPTokens( const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNVX* pTokens_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pTokens = pTokens_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsLayoutCreateInfoNVX const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkIndirectCommandsLayoutCreateInfoNVX*>( this );
|
||||
}
|
||||
|
||||
operator VkIndirectCommandsLayoutCreateInfoNVX &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkIndirectCommandsLayoutCreateInfoNVX*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( IndirectCommandsLayoutCreateInfoNVX const& ) const = default;
|
||||
#else
|
||||
bool operator==( IndirectCommandsLayoutCreateInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pipelineBindPoint == rhs.pipelineBindPoint )
|
||||
&& ( flags == rhs.flags )
|
||||
&& ( tokenCount == rhs.tokenCount )
|
||||
&& ( pTokens == rhs.pTokens );
|
||||
}
|
||||
|
||||
bool operator!=( IndirectCommandsLayoutCreateInfoNVX const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eIndirectCommandsLayoutCreateInfoNVX;
|
||||
const void* pNext = {};
|
||||
VULKAN_HPP_NAMESPACE::PipelineBindPoint pipelineBindPoint = VULKAN_HPP_NAMESPACE::PipelineBindPoint::eGraphics;
|
||||
VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutUsageFlagsNVX flags = {};
|
||||
uint32_t tokenCount = {};
|
||||
const VULKAN_HPP_NAMESPACE::IndirectCommandsLayoutTokenNVX* pTokens = {};
|
||||
};
|
||||
static_assert( sizeof( IndirectCommandsLayoutCreateInfoNVX ) == sizeof( VkIndirectCommandsLayoutCreateInfoNVX ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<IndirectCommandsLayoutCreateInfoNVX>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
@ -1,160 +0,0 @@
|
||||
// Copyright (c) 2015-2019 The Khronos Group Inc.
|
||||
//
|
||||
// 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.
|
||||
//
|
||||
// ---- Exceptions to the Apache 2.0 License: ----
|
||||
//
|
||||
// As an exception, if you use this Software to generate code and portions of
|
||||
// this Software are embedded into the generated code as a result, you may
|
||||
// redistribute such product without providing attribution as would otherwise
|
||||
// be required by Sections 4(a), 4(b) and 4(d) of the License.
|
||||
//
|
||||
// In addition, if you combine or link code generated by this Software with
|
||||
// software that is licensed under the GPLv2 or the LGPL v2.0 or 2.1
|
||||
// ("`Combined Software`") and if a court of competent jurisdiction determines
|
||||
// that the patent provision (Section 3), the indemnity provision (Section 9)
|
||||
// or other Section of the License conflicts with the conditions of the
|
||||
// applicable GPL or LGPL license, you may retroactively and prospectively
|
||||
// choose to deem waived or otherwise exclude such Section(s) of the License,
|
||||
// but only in their entirety and only with respect to the Combined Software.
|
||||
//
|
||||
|
||||
// This header is generated from the Khronos Vulkan XML API Registry.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "../handles.hpp"
|
||||
#include "VkAcquire.hpp"
|
||||
#include "VkAcceleration.hpp"
|
||||
#include "VkApplication.hpp"
|
||||
#include "VkAllocation.hpp"
|
||||
#include "VkExternal.hpp"
|
||||
#include "VkBind.hpp"
|
||||
#include "VkCooperative.hpp"
|
||||
#include "VkAndroid.hpp"
|
||||
#include "VkImport.hpp"
|
||||
#include "VkImage.hpp"
|
||||
#include "VkDescriptor.hpp"
|
||||
#include "VkBase.hpp"
|
||||
#include "VkAttachment.hpp"
|
||||
#include "VkBuffer.hpp"
|
||||
#include "VkFramebuffer.hpp"
|
||||
#include "VkCalibrated.hpp"
|
||||
#include "VkDevice.hpp"
|
||||
#include "VkCheckpoint.hpp"
|
||||
#include "VkConformance.hpp"
|
||||
#include "VkClear.hpp"
|
||||
#include "VkCmd.hpp"
|
||||
#include "VkExtension.hpp"
|
||||
#include "VkCoarse.hpp"
|
||||
#include "VkCommand.hpp"
|
||||
#include "VkFormat.hpp"
|
||||
#include "VkComponent.hpp"
|
||||
#include "VkCopy.hpp"
|
||||
#include "VkCompute.hpp"
|
||||
#include "VkConditional.hpp"
|
||||
#include "VkD3D.hpp"
|
||||
#include "VkDebug.hpp"
|
||||
#include "VkFence.hpp"
|
||||
#include "VkDedicated.hpp"
|
||||
#include "VkDraw.hpp"
|
||||
#include "VkDispatch.hpp"
|
||||
#include "VkDisplay.hpp"
|
||||
#include "VkDrm.hpp"
|
||||
#include "VkEvent.hpp"
|
||||
#include "VkExport.hpp"
|
||||
#include "VkExtent.hpp"
|
||||
#include "VkFilter.hpp"
|
||||
#include "VkGeometry.hpp"
|
||||
#include "VkGraphics.hpp"
|
||||
#include "VkHdr.hpp"
|
||||
#include "VkHeadless.hpp"
|
||||
#include "VkI.hpp"
|
||||
#include "VkIndirect.hpp"
|
||||
|
||||
namespace VULKAN_HPP_NAMESPACE
|
||||
{
|
||||
struct InitializePerformanceApiInfoINTEL
|
||||
{
|
||||
VULKAN_HPP_CONSTEXPR InitializePerformanceApiInfoINTEL( void* pUserData_ = {} ) VULKAN_HPP_NOEXCEPT
|
||||
: pUserData( pUserData_ )
|
||||
{}
|
||||
|
||||
VULKAN_HPP_CONSTEXPR InitializePerformanceApiInfoINTEL( InitializePerformanceApiInfoINTEL const& rhs ) VULKAN_HPP_NOEXCEPT
|
||||
: pNext( rhs.pNext )
|
||||
, pUserData( rhs.pUserData )
|
||||
{}
|
||||
|
||||
InitializePerformanceApiInfoINTEL & operator=( InitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
memcpy( &pNext, &rhs.pNext, sizeof( InitializePerformanceApiInfoINTEL ) - offsetof( InitializePerformanceApiInfoINTEL, pNext ) );
|
||||
return *this;
|
||||
}
|
||||
|
||||
InitializePerformanceApiInfoINTEL( VkInitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = rhs;
|
||||
}
|
||||
|
||||
InitializePerformanceApiInfoINTEL& operator=( VkInitializePerformanceApiInfoINTEL const & rhs ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
*this = *reinterpret_cast<VULKAN_HPP_NAMESPACE::InitializePerformanceApiInfoINTEL const *>(&rhs);
|
||||
return *this;
|
||||
}
|
||||
|
||||
InitializePerformanceApiInfoINTEL & setPNext( const void* pNext_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pNext = pNext_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
InitializePerformanceApiInfoINTEL & setPUserData( void* pUserData_ ) VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
pUserData = pUserData_;
|
||||
return *this;
|
||||
}
|
||||
|
||||
operator VkInitializePerformanceApiInfoINTEL const&() const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<const VkInitializePerformanceApiInfoINTEL*>( this );
|
||||
}
|
||||
|
||||
operator VkInitializePerformanceApiInfoINTEL &() VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return *reinterpret_cast<VkInitializePerformanceApiInfoINTEL*>( this );
|
||||
}
|
||||
|
||||
#if defined(VULKAN_HPP_HAS_SPACESHIP_OPERATOR)
|
||||
auto operator<=>( InitializePerformanceApiInfoINTEL const& ) const = default;
|
||||
#else
|
||||
bool operator==( InitializePerformanceApiInfoINTEL const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return ( sType == rhs.sType )
|
||||
&& ( pNext == rhs.pNext )
|
||||
&& ( pUserData == rhs.pUserData );
|
||||
}
|
||||
|
||||
bool operator!=( InitializePerformanceApiInfoINTEL const& rhs ) const VULKAN_HPP_NOEXCEPT
|
||||
{
|
||||
return !operator==( rhs );
|
||||
}
|
||||
#endif
|
||||
|
||||
public:
|
||||
const VULKAN_HPP_NAMESPACE::StructureType sType = StructureType::eInitializePerformanceApiInfoINTEL;
|
||||
const void* pNext = {};
|
||||
void* pUserData = {};
|
||||
};
|
||||
static_assert( sizeof( InitializePerformanceApiInfoINTEL ) == sizeof( VkInitializePerformanceApiInfoINTEL ), "struct and wrapper have different size!" );
|
||||
static_assert( std::is_standard_layout<InitializePerformanceApiInfoINTEL>::value, "struct wrapper is not a standard layout!" );
|
||||
} // namespace VULKAN_HPP_NAMESPACE
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user