|
|
|
|
#ifndef Magnum_Vk_Enums_h
|
|
|
|
|
#define Magnum_Vk_Enums_h
|
|
|
|
|
/*
|
|
|
|
|
This file is part of Magnum.
|
|
|
|
|
|
|
|
|
|
Copyright © 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017, 2018, 2019
|
|
|
|
|
Vladimír Vondruš <mosra@centrum.cz>
|
|
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
copy of this software and associated documentation files (the "Software"),
|
|
|
|
|
to deal in the Software without restriction, including without limitation
|
|
|
|
|
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
|
and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
|
Software is furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included
|
|
|
|
|
in all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
|
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
|
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
|
DEALINGS IN THE SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/** @file
|
|
|
|
|
* @brief Function @ref Magnum::Vk::hasVkPrimitiveTopology(), @ref Magnum::Vk::vkPrimitiveTopology(), @ref Magnum::Vk::hasVkIndexType(), @ref Magnum::Vk::vkIndexType(), @ref Magnum::Vk::hasVkFormat(), @ref Magnum::Vk::vkFormat(), @ref Magnum::Vk::vkFilter(), @ref Magnum::Vk::vkSamplerMipmapMode(), @ref Magnum::Vk::hasVkSamplerAddressMode(), @ref Magnum::Vk::vkSamplerAddressMode()
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "Magnum/Array.h"
|
|
|
|
|
#include "Magnum/Vk/Vulkan.h"
|
|
|
|
|
#include "Magnum/Vk/visibility.h"
|
|
|
|
|
|
|
|
|
|
namespace Magnum { namespace Vk {
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Check availability of a generic mesh primitive
|
|
|
|
|
|
|
|
|
|
In particular, Vulkan doesn't support the @ref MeshPrimitive::LineLoop
|
|
|
|
|
primitive. Returns @cpp false @ce if Vulkan doesn't support such primitive,
|
|
|
|
|
@cpp true @ce otherwise. The @p primitive value is expected to be valid.
|
|
|
|
|
@see @ref vkPrimitiveTopology()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT bool hasVkPrimitiveTopology(Magnum::MeshPrimitive primitive);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert generic mesh primitive to Vulkan primitive topology
|
|
|
|
|
|
|
|
|
|
Not all generic mesh primitives are available in Vulkan and this function
|
|
|
|
|
expects that given primitive is available. Use @ref hasVkPrimitiveTopology() to
|
|
|
|
|
query availability of given primitive.
|
|
|
|
|
@see @ref vkIndexType()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkPrimitiveTopology vkPrimitiveTopology(Magnum::MeshPrimitive primitive);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Check availability of a generic index type
|
|
|
|
|
|
|
|
|
|
Returns @cpp false @ce if Vulkan doesn't support such type, @cpp true @ce
|
|
|
|
|
otherwise. The @p type value is expected to be valid.
|
|
|
|
|
|
|
|
|
|
@note Support of some types depends on presence of a particular Vulkan
|
|
|
|
|
extension. Such check is outside of the scope of this function and you are
|
|
|
|
|
expected to verify extension availability before using such type.
|
|
|
|
|
|
|
|
|
|
@see @ref vkIndexType(), @vk_extension{EXT,index_type_uint8}
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT bool hasVkIndexType(Magnum::MeshIndexType type);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert generic mesh index type to Vulkan mesh index type
|
|
|
|
|
|
|
|
|
|
Not all generic index types are available in Vulkan and this function expects
|
|
|
|
|
that given type is available. Use @ref hasVkIndexType() to query availability
|
|
|
|
|
of given index type.
|
|
|
|
|
@see @ref vkPrimitiveTopology()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkIndexType vkIndexType(Magnum::MeshIndexType type);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Check availability of a generic pixel format
|
|
|
|
|
|
|
|
|
|
Some Vulkan targets don't support all generic formats. Returns @cpp false @ce
|
|
|
|
|
if current target can't support such format, @cpp true @ce otherwise. Moreover,
|
|
|
|
|
returns @cpp true @ce also for all formats that are
|
|
|
|
|
@ref isPixelFormatImplementationSpecific(). The @p format value is expected to
|
|
|
|
|
be valid.
|
|
|
|
|
|
|
|
|
|
@note Support of some formats depends on presence of a particular Vulkan
|
|
|
|
|
extension. Such check is outside of the scope of this function and you are
|
|
|
|
|
expected to verify extension availability before using such format.
|
|
|
|
|
|
|
|
|
|
@see @ref vkFormat()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT bool hasVkFormat(Magnum::PixelFormat format);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Check availability of a generic compressed pixel format
|
|
|
|
|
|
|
|
|
|
Some Vulkan targets don't support all generic formats. Returns @cpp false @ce
|
|
|
|
|
if current target can't support such format, @cpp true @ce otherwise. Moreover,
|
|
|
|
|
returns @cpp true @ce also for all formats that are
|
|
|
|
|
@ref isCompressedPixelFormatImplementationSpecific(). The @p format value is
|
|
|
|
|
expected to be valid.
|
|
|
|
|
|
|
|
|
|
@note Support of some formats depends on presence of a particular Vulkan
|
|
|
|
|
extension. Such check is outside of the scope of this function and you are
|
|
|
|
|
expected to verify extension availability before using such format.
|
|
|
|
|
|
|
|
|
|
@see @ref vkFormat()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT bool hasVkFormat(Magnum::CompressedPixelFormat format);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert a generic pixel format to Vulkan format
|
|
|
|
|
|
|
|
|
|
In case @ref isPixelFormatImplementationSpecific() returns @cpp false @ce for
|
|
|
|
|
@p format, maps it to a corresponding Vulkan format. In case
|
|
|
|
|
@ref isPixelFormatImplementationSpecific() returns @cpp true @ce, assumes
|
|
|
|
|
@p format stores Vulkan-specific format and returns @ref pixelFormatUnwrap()
|
|
|
|
|
cast to @type_vk{Format}.
|
|
|
|
|
|
|
|
|
|
Not all generic pixel formats may be available on all targets and this function
|
|
|
|
|
expects that given format is available on the target. Use @ref hasVkFormat() to
|
|
|
|
|
query availability of given format.
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkFormat vkFormat(Magnum::PixelFormat format);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert a generic pixel format to Vulkan format
|
|
|
|
|
|
|
|
|
|
In case @ref isCompressedPixelFormatImplementationSpecific() returns
|
|
|
|
|
@cpp false @ce for @p format, maps it to a corresponding Vulkan format. In case
|
|
|
|
|
@ref isCompressedPixelFormatImplementationSpecific() returns @cpp true @ce,
|
|
|
|
|
assumes @p format stores Vulkan-specific format and returns
|
|
|
|
|
@ref compressedPixelFormatUnwrap() cast to @type_vk{Format}.
|
|
|
|
|
|
|
|
|
|
Not all generic pixel formats may be available on all targets and this function
|
|
|
|
|
expects that given format is available on the target. Use @ref hasVkFormat() to
|
|
|
|
|
query availability of given format.
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkFormat vkFormat(Magnum::CompressedPixelFormat format);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert generic sampler filter to Vulkan filter
|
|
|
|
|
|
|
|
|
|
@see @ref vkSamplerMipmapMode(), @ref vkSamplerAddressMode()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkFilter vkFilter(Magnum::SamplerFilter filter);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert generic sampler mipomap mode to Vulkan sampler mipmap mode
|
|
|
|
|
|
|
|
|
|
Vulkan doesn't support the @ref SamplerMipmap::Base value directly, instead
|
|
|
|
|
@def_vk{SAMPLER_MIPMAP_MODE_NEAREST,SamplerMipmapMode} is used and you have to
|
|
|
|
|
configure the sampler to use just a single mipmap level.
|
|
|
|
|
@see @ref vkFilter(), @ref vkSamplerAddressMode()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkSamplerMipmapMode vkSamplerMipmapMode(Magnum::SamplerMipmap mipmap);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Check availability of a generic sampler wrapping mode
|
|
|
|
|
|
|
|
|
|
Some Vulkan targets don't support all generic sampler wrapping modes (for
|
|
|
|
|
example the @ref SamplerWrapping::MirrorClampToEdge). Returns @cpp false @ce if
|
|
|
|
|
current target can't support such format, @cpp true @ce otherwise. The
|
|
|
|
|
@p wrapping value is expected to be valid.
|
|
|
|
|
|
|
|
|
|
@note Support of some formats depends on presence of a particular Vulkan
|
|
|
|
|
extension. Such check is outside of the scope of this function and you are
|
|
|
|
|
expected to verify extension availability before using such format.
|
|
|
|
|
|
|
|
|
|
@see @ref vkSamplerAddressMode(), @ref vkFilter(), @ref vkSamplerMipmapMode()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT bool hasVkSamplerAddressMode(Magnum::SamplerWrapping wrapping);
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
@brief Convert generic sampler filter mode to Vulkan sampler address mode
|
|
|
|
|
|
|
|
|
|
Not all generic sampler wrapping modes may be available on all targets and this
|
|
|
|
|
function expects that given format is available on the target. Use
|
|
|
|
|
@ref hasVkSamplerAddressMode() to query availability of given mode.
|
|
|
|
|
@see @ref vkFilter(), @ref vkSamplerAddressMode()
|
|
|
|
|
*/
|
|
|
|
|
MAGNUM_VK_EXPORT VkSamplerAddressMode vkSamplerAddressMode(Magnum::SamplerWrapping wrapping);
|
|
|
|
|
|
|
|
|
|
/** @overload */
|
|
|
|
|
template<UnsignedInt dimensions> Array<dimensions, VkSamplerAddressMode> vkSamplerAddressMode(const Array<dimensions, Magnum::SamplerWrapping>& wrapping) {
|
|
|
|
|
Array<dimensions, VkSamplerAddressMode> out; /** @todo NoInit */
|
|
|
|
|
for(std::size_t i = 0; i != dimensions; ++i)
|
|
|
|
|
out[i] = vkSamplerAddressMode(wrapping[i]);
|
|
|
|
|
return out;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
|
#endif
|