diff --git a/doc/Doxyfile b/doc/Doxyfile index 1e818ce52..a63e47ceb 100644 --- a/doc/Doxyfile +++ b/doc/Doxyfile @@ -301,7 +301,8 @@ ALIASES = \ "webgl_extension{2}=\1_\2" \ "fn_vk{1}=vk\1()" \ "type_vk{1}=Vk\1" \ - "def_vk{2}=VK_\1" \ + "val_vk{2}=VK_\1" \ + "def_vk{1}=VK_\1" \ "requires_vk_extension=@xrefitem requires-vk-extension \"Requires Vulkan extension\" \"Functionality requiring specific Vulkan extension\"" \ "vk_extension{2}= \1_\2" \ "fn_al{1}=`al\1()`" \ @@ -334,7 +335,8 @@ ALIASES = \ "def_gl_extension_keyword{3}=@def_gl_extension{\1,\2,\3}" \ "fn_vk_keyword{1}=@fn_vk{\1}" \ "type_vk_keyword{2}=@type_vk{\1,\2}" \ - "def_vk_keyword{2}=@def_vk{\1,\2}" \ + "val_vk_keyword{2}=@val_vk{\1,\2}" \ + "def_vk_keyword{1}=@def_vk{\1}" \ "fn_al_keyword{1}=@fn_al{\1}" \ "fn_alc_keyword{1}=@fn_alc{\1}" \ "def_al_keyword{1}=@def_al{\1}" \ diff --git a/doc/Doxyfile-mcss b/doc/Doxyfile-mcss index 6b5ad64a8..1aa2182c7 100644 --- a/doc/Doxyfile-mcss +++ b/doc/Doxyfile-mcss @@ -58,7 +58,8 @@ ALIASES = \ "webgl_extension{2}=@m_class{m-doc-external} \1_\2" \ "fn_vk{1}=@m_class{m-doc-external} vk\1()" \ "type_vk{1}=@m_class{m-doc-external} Vk\1" \ - "def_vk{2}=@m_class{m-doc-external} VK_\1" \ + "val_vk{2}=@m_class{m-doc-external} VK_\1" \ + "def_vk{1}=@m_class{m-doc-external} VK_\1" \ "requires_vk_extension=@xrefitem requires-vk-extension \"Requires Vulkan extension\" \"Functionality requiring specific Vulkan extension\"" \ "vk_extension{2}=@m_class{m-doc-external} \1_\2" \ "fn_al{1}=@m_class{m-doc-external} al\1()" \ @@ -91,7 +92,8 @@ ALIASES = \ "def_gl_extension_keyword{3}=@xmlonly@endxmlonly @def_gl_extension{\1,\2,\3}" \ "fn_vk_keyword{1}=@xmlonly@endxmlonly @fn_vk{\1}" \ "type_vk_keyword{1}=@xmlonly@endxmlonly @type_vk{\1}" \ - "def_vk_keyword{2}=@xmlonly@endxmlonly @def_vk{\1,\2}" \ + "val_vk_keyword{2}=@xmlonly@endxmlonly @val_vk{\1,\2}" \ + "def_vk_keyword{1}=@xmlonly@endxmlonly @def_vk{\1}" \ "fn_al_keyword{1}=@xmlonly@endxmlonly @fn_al{\1}" \ "fn_alc_keyword{1}=@xmlonly@endxmlonly @fn_alc{\1}" \ "def_al_keyword{1}=@xmlonly@endxmlonly @def_al{\1}" \ diff --git a/doc/Doxyfile-public b/doc/Doxyfile-public index be9a30414..29d4e1971 100644 --- a/doc/Doxyfile-public +++ b/doc/Doxyfile-public @@ -54,7 +54,8 @@ ALIASES = \ "webgl_extension{2}=@m_class{m-doc-external} \1_\2" \ "fn_vk{1}=@m_class{m-doc-external} vk\1()" \ "type_vk{1}=@m_class{m-doc-external} Vk\1" \ - "def_vk{2}=@m_class{m-doc-external} VK_\1" \ + "val_vk{2}=@m_class{m-doc-external} VK_\1" \ + "def_vk{1}=@m_class{m-doc-external} VK_\1" \ "requires_vk_extension=@xrefitem requires-vk-extension \"Requires Vulkan extension\" \"Functionality requiring specific Vulkan extension\"" \ "vk_extension{2}=@m_class{m-doc-external} \1_\2" \ "fn_al{1}=@m_class{m-doc-external} al\1()" \ @@ -87,7 +88,8 @@ ALIASES = \ "def_gl_extension_keyword{3}=@xmlonly@endxmlonly @def_gl_extension{\1,\2,\3}" \ "fn_vk_keyword{1}=@xmlonly@endxmlonly @fn_vk{\1}" \ "type_vk_keyword{1}=@xmlonly@endxmlonly @type_vk{\1}" \ - "def_vk_keyword{2}=@xmlonly@endxmlonly @def_vk{\1,\2}" \ + "val_vk_keyword{2}=@xmlonly@endxmlonly @val_vk{\1,\2}" \ + "def_vk_keyword{1}=@xmlonly@endxmlonly @def_vk{\1}" \ "fn_al_keyword{1}=@xmlonly@endxmlonly @fn_al{\1}" \ "fn_alc_keyword{1}=@xmlonly@endxmlonly @fn_alc{\1}" \ "def_al_keyword{1}=@xmlonly@endxmlonly @def_al{\1}" \ diff --git a/doc/coding-style.dox b/doc/coding-style.dox index 54b5425e6..556b3ccdc 100644 --- a/doc/coding-style.dox +++ b/doc/coding-style.dox @@ -193,7 +193,8 @@ specification, with function name as link text: @fn_gl_extension{LabelObject,EXT,debug_label} -For Vulkan, the commands are @c \@fn_vk, @c \@type_vk and @c \@def_vk. Example: +For Vulkan, the commands are @c \@fn_vk, @c \@type_vk, @c \@val_vk and +@c \@def_vk. Example: @snippet coding-style.h fn_vk @@ -202,7 +203,8 @@ Produces:
- @fn_vk{CreateInstance} - @type_vk{InstanceCreateInfo} -- @def_vk{STRUCTURE_TYPE_INSTANCE_CREATE_INFO,StructureType} +- @val_vk{STRUCTURE_TYPE_INSTANCE_CREATE_INFO,StructureType} +- @def_vk{VERSION_MINOR}
For OpenAL, the commands are @c \@fn_al, @c \@fn_alc, @c \@def_al and diff --git a/doc/snippets/coding-style.h b/doc/snippets/coding-style.h index e2ad2c7b8..9ec2c2340 100644 --- a/doc/snippets/coding-style.h +++ b/doc/snippets/coding-style.h @@ -52,7 +52,8 @@ static void setSeamless(bool enabled) { /** - @fn_vk{CreateInstance} - @type_vk{InstanceCreateInfo} -- @def_vk{STRUCTURE_TYPE_INSTANCE_CREATE_INFO,StructureType} +- @val_vk{STRUCTURE_TYPE_INSTANCE_CREATE_INFO,StructureType} +- @def_vk{VERSION_MINOR} */ /* [fn_vk] */ diff --git a/src/Magnum/Mesh.h b/src/Magnum/Mesh.h index 0fc068a5f..078d1f027 100644 --- a/src/Magnum/Mesh.h +++ b/src/Magnum/Mesh.h @@ -65,7 +65,7 @@ enum class MeshPrimitive: UnsignedInt { * Single points. * * Corresponds to @ref GL::MeshPrimitive::Points; - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_POINT_LIST,PrimitiveTopology}; + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_POINT_LIST,PrimitiveTopology}; * @m_class{m-doc-external} [D3D_PRIMITIVE_TOPOLOGY_POINTLIST](https://docs.microsoft.com/en-us/windows/win32/api/d3dcommon/ne-d3dcommon-d3d_primitive_topology) * or @m_class{m-doc-external} [MTLPrimitiveTypePoint](https://developer.apple.com/documentation/metal/mtlprimitivetype/mtlprimitivetypepoint?language=objc). * @m_keywords{D3D_PRIMITIVE_TOPOLOGY_POINTLIST MTLPrimitiveTypePoint} @@ -77,7 +77,7 @@ enum class MeshPrimitive: UnsignedInt { * connected together. * * Corresponds to @ref GL::MeshPrimitive::Lines / - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_LINE_LIST,PrimitiveTopology}; + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_LINE_LIST,PrimitiveTopology}; * @m_class{m-doc-external} [D3D_PRIMITIVE_TOPOLOGY_LINELIST](https://docs.microsoft.com/en-us/windows/win32/api/d3dcommon/ne-d3dcommon-d3d_primitive_topology) * or @m_class{m-doc-external} [MTLPrimitiveTypeLine](https://developer.apple.com/documentation/metal/mtlprimitivetype/mtlprimitivetypeline?language=objc). * @m_keywords{D3D_PRIMITIVE_TOPOLOGY_LINELIST MTLPrimitiveTypeLine} @@ -98,7 +98,7 @@ enum class MeshPrimitive: UnsignedInt { * vertex defines another segment. * * Corresponds to @ref GL::MeshPrimitive::LineStrip / - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_LINE_STRIP,PrimitiveTopology}; + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_LINE_STRIP,PrimitiveTopology}; * @m_class{m-doc-external} [D3D_PRIMITIVE_TOPOLOGY_LINESTRIP](https://docs.microsoft.com/en-us/windows/win32/api/d3dcommon/ne-d3dcommon-d3d_primitive_topology) * or @m_class{m-doc-external} [MTLPrimitiveTypeLineStrip](https://developer.apple.com/documentation/metal/mtlprimitivetype/mtlprimitivetypelinestrip?language=objc). * @m_keywords{D3D_PRIMITIVE_TOPOLOGY_LINESTRIP MTLPrimitiveTypeLineStrip} @@ -110,7 +110,7 @@ enum class MeshPrimitive: UnsignedInt { * Each three vertices define one triangle. * * Corresponds to @ref GL::MeshPrimitive::Triangles / - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_LIST,PrimitiveTopology}; + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_LIST,PrimitiveTopology}; * @m_class{m-doc-external} [D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST](https://docs.microsoft.com/en-us/windows/win32/api/d3dcommon/ne-d3dcommon-d3d_primitive_topology) * or @m_class{m-doc-external} [MTLPrimitiveTypeTriangle](https://developer.apple.com/documentation/metal/mtlprimitivetype/mtlprimitivetypetriangle?language=objc). * @m_keywords{D3D_PRIMITIVE_TOPOLOGY_TRIANGLELIST MTLPrimitiveTypeTriangle} @@ -122,7 +122,7 @@ enum class MeshPrimitive: UnsignedInt { * vertex defines another triangle. * * Corresponds to @ref GL::MeshPrimitive::TriangleStrip / - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,PrimitiveTopology} or + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,PrimitiveTopology} or * @m_class{m-doc-external} [D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP](https://docs.microsoft.com/en-us/windows/win32/api/d3dcommon/ne-d3dcommon-d3d_primitive_topology) * or @m_class{m-doc-external} [MTLPrimitiveTypeTriangleStrip](https://developer.apple.com/documentation/metal/mtlprimitivetype/mtlprimitivetypetrianglestrip?language=objc). * @m_keywords{D3D_PRIMITIVE_TOPOLOGY_TRIANGLESTRIP MTLPrimitiveTypeTriangleStrip} @@ -135,7 +135,7 @@ enum class MeshPrimitive: UnsignedInt { * previous and center vertex. * * Corresponds to @ref GL::MeshPrimitive::TriangleFan / - * @def_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_FAN,PrimitiveTopology}. Not + * @val_vk_keyword{PRIMITIVE_TOPOLOGY_TRIANGLE_FAN,PrimitiveTopology}. Not * supported on D3D or Metal. * @see @ref MeshTools::generateTriangleFanIndices() */ @@ -250,7 +250,7 @@ enum class MeshIndexType: UnsignedByte { * Unsigned byte * * Corresponds to @ref GL::MeshIndexType::UnsignedByte / - * @def_vk_keyword{INDEX_TYPE_UINT8_EXT,IndexType}. Note that using this + * @val_vk_keyword{INDEX_TYPE_UINT8_EXT,IndexType}. Note that using this * type is discouraged, at least AMD GPUs are known to suggest (via debug * output) using 16-byte types instead for better efficiency. */ @@ -260,7 +260,7 @@ enum class MeshIndexType: UnsignedByte { * Unsigned short * * Corresponds to @ref GL::MeshIndexType::UnsignedShort / - * @def_vk_keyword{INDEX_TYPE_UINT16,IndexType}. + * @val_vk_keyword{INDEX_TYPE_UINT16,IndexType}. */ UnsignedShort, @@ -268,7 +268,7 @@ enum class MeshIndexType: UnsignedByte { * Unsigned int * * Corresponds to @ref GL::MeshIndexType::UnsignedInt / - * @def_vk_keyword{INDEX_TYPE_UINT32,IndexType}. + * @val_vk_keyword{INDEX_TYPE_UINT32,IndexType}. */ UnsignedInt }; diff --git a/src/Magnum/PixelFormat.h b/src/Magnum/PixelFormat.h index 8234d9064..dee7ac809 100644 --- a/src/Magnum/PixelFormat.h +++ b/src/Magnum/PixelFormat.h @@ -72,7 +72,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::R8; - * @def_vk_keyword{FORMAT_R8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR8Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr8unorm?language=objc). * @m_keywords{DXGI_FORMAT_R8_UNORM MTLPixelFormatR8Unorm} @@ -84,7 +84,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RG8; - * @def_vk_keyword{FORMAT_R8G8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG8Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg8unorm?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_UNORM MTLPixelFormatRG8Unorm} @@ -96,7 +96,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RGB8 or - * @def_vk_keyword{FORMAT_R8G8B8_UNORM,Format}. No 24-bit D3D or Metal + * @val_vk_keyword{FORMAT_R8G8B8_UNORM,Format}. No 24-bit D3D or Metal * equivalent. */ RGB8Unorm, @@ -106,7 +106,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RGBA8; - * @def_vk_keyword{FORMAT_R8G8B8A8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA8Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba8unorm?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_UNORM MTLPixelFormatRGBA8Unorm} @@ -118,7 +118,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::R8Snorm; - * @def_vk_keyword{FORMAT_R8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR8Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr8Snorm?language=objc). * @m_keywords{DXGI_FORMAT_R8_SNORM MTLPixelFormatR8Snorm} @@ -130,7 +130,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RG8Snorm; - * @def_vk_keyword{FORMAT_R8G8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG8Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg8snorm?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_SNORM MTLPixelFormatRG8Snorm} @@ -142,7 +142,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RGB8Snorm; - * @def_vk_keyword{FORMAT_R8G8B8_SNORM,Format}. No 24-bit D3D or Metal + * @val_vk_keyword{FORMAT_R8G8B8_SNORM,Format}. No 24-bit D3D or Metal * equivalent. */ RGB8Snorm, @@ -152,7 +152,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RGBA8Snorm; - * @def_vk_keyword{FORMAT_R8G8B8A8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA8Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba8snorm?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_SNORM MTLPixelFormatRGBA8Snorm} @@ -164,7 +164,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::SR8; - * @def_vk_keyword{FORMAT_R8_SRGB,Format} or + * @val_vk_keyword{FORMAT_R8_SRGB,Format} or * @m_class{m-doc-external} [MTLPixelFormatR8Unorm_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr8unorm_srgb?language=objc). No D3D equivalent. * @m_keywords{MTLPixelFormatR8Unorm_sRGB} * @m_since{2019,10} @@ -176,7 +176,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::SRG8; - * @def_vk_keyword{FORMAT_R8G8_SRGB,Format} or + * @val_vk_keyword{FORMAT_R8G8_SRGB,Format} or * @m_class{m-doc-external} [MTLPixelFormatRG8Unorm_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg8unorm_srgb?language=objc). No D3D equivalent. * @m_keywords{MTLPixelFormatRG8Unorm_sRGB} * @m_since{2019,10} @@ -188,7 +188,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::SRGB8 or - * @def_vk_keyword{FORMAT_R8G8B8_SRGB,Format}. No 24-bit D3D or Metal + * @val_vk_keyword{FORMAT_R8G8B8_SRGB,Format}. No 24-bit D3D or Metal * equivalent. * @m_since{2019,10} */ @@ -199,7 +199,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::SRGB8Alpha8; - * @def_vk_keyword{FORMAT_R8G8B8A8_SRGB,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_SRGB,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_UNORM_SRGB](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA8Unorm_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba8unorm_srgb?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_UNORM_SRGB MTLPixelFormatRGBA8Unorm_sRGB} @@ -212,7 +212,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::R8UI; - * @def_vk_keyword{FORMAT_R8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR8Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr8uint?language=objc). * @m_keywords{DXGI_FORMAT_R8_UINT MTLPixelFormatR8Uint} @@ -224,7 +224,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RG8UI; - * @def_vk_keyword{FORMAT_R8G8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8G8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG8Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg8uint?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_UINT MTLPixelFormatRG8Uint} @@ -236,7 +236,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RGB8UI or - * @def_vk_keyword{FORMAT_R8G8B8_UINT,Format}. No 24-bit D3D or Metal + * @val_vk_keyword{FORMAT_R8G8B8_UINT,Format}. No 24-bit D3D or Metal * equivalent. */ RGB8UI, @@ -246,7 +246,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::UnsignedByte, @ref GL::TextureFormat::RGBA8UI; - * @def_vk_keyword{FORMAT_R8G8B8A8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA8Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba8uint?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_UINT MTLPixelFormatRGBA8Uint} @@ -258,7 +258,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::R8I; - * @def_vk_keyword{FORMAT_R8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR8Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr8sint?language=objc). * @m_keywords{DXGI_FORMAT_R8_SINT MTLPixelFormatR8Sint} @@ -270,7 +270,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RG8I; - * @def_vk_keyword{FORMAT_R8G8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8G8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG8Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg8sint?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_SINT MTLPixelFormatRG8Sint} @@ -282,7 +282,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RGB8I; - * @def_vk_keyword{FORMAT_R8G8B8_SINT,Format}. No 24-bit D3D or Metal + * @val_vk_keyword{FORMAT_R8G8B8_SINT,Format}. No 24-bit D3D or Metal * equivalent. */ RGB8I, @@ -292,7 +292,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::Byte, @ref GL::TextureFormat::RGBA8I; - * @def_vk_keyword{FORMAT_R8G8B8A8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA8Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba8sint?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_SINT MTLPixelFormatRGBA8Sint} @@ -304,7 +304,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::R16; - * @def_vk_keyword{FORMAT_R16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR16Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr16unorm?language=objc). * @m_keywords{DXGI_FORMAT_R16_UNORM MTLPixelFormatR16Unorm} @@ -316,7 +316,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RG16; - * @def_vk_keyword{FORMAT_R16G16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG16Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg16unorm?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_UNORM MTLPixelFormatRG16Unorm} @@ -328,7 +328,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RGB16 or - * @def_vk_keyword{FORMAT_R16G16B16_UNORM,Format}. No 48-bit D3D or Metal + * @val_vk_keyword{FORMAT_R16G16B16_UNORM,Format}. No 48-bit D3D or Metal * equivalent. */ RGB16Unorm, @@ -338,7 +338,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RGBA16; - * @def_vk_keyword{FORMAT_R16G16B16A16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA16Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba16unorm?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_UNORM MTLPixelFormatRGBA16Unorm} @@ -350,7 +350,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::Short, @ref GL::TextureFormat::R16Snorm; - * @def_vk_keyword{FORMAT_R16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR16Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr16snorm?language=objc). * @m_keywords{DXGI_FORMAT_R16_SNORM MTLPixelFormatR16Snorm} @@ -362,7 +362,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RG16Snorm; - * @def_vk_keyword{FORMAT_R16G16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG16Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg16snorm?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_SNORM MTLPixelFormatRG16Snorm} @@ -374,7 +374,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RGB16Snorm; - * @def_vk_keyword{FORMAT_R16G16B16_SNORM,Format}. No 48-bit D3D or Metal + * @val_vk_keyword{FORMAT_R16G16B16_SNORM,Format}. No 48-bit D3D or Metal * equivalent. */ RGB16Snorm, @@ -384,7 +384,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RGBA16Snorm; - * @def_vk_keyword{FORMAT_R16G16B16A16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA16Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba16snorm?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_SNORM MTLPixelFormatRGBA16Snorm} @@ -396,7 +396,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::R16UI; - * @def_vk_keyword{FORMAT_R16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR16Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr16uint?language=objc). * @m_keywords{DXGI_FORMAT_R16_UINT MTLPixelFormatR16Uint} @@ -408,7 +408,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RG16UI; - * @def_vk_keyword{FORMAT_R16G16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16G16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG16Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg16uint?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_UINT MTLPixelFormatRG16Uint} @@ -420,7 +420,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RGB16UI; - * @def_vk_keyword{FORMAT_R16G16B16_UINT,Format}. No 48-bit D3D or Metal + * @val_vk_keyword{FORMAT_R16G16B16_UINT,Format}. No 48-bit D3D or Metal * equivalent. */ RGB16UI, @@ -430,7 +430,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::UnsignedShort, @ref GL::TextureFormat::RGBA16UI; - * @def_vk_keyword{FORMAT_R16G16B16A16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA16Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba16uint?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_UINT MTLPixelFormatRGBA16Uint} @@ -442,7 +442,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::Short, @ref GL::TextureFormat::R16I; - * @def_vk_keyword{FORMAT_R16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR16Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr16sint?language=objc). * @m_keywords{DXGI_FORMAT_R16_SINT MTLPixelFormatR16Sint} @@ -454,7 +454,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RG16I; - * @def_vk_keyword{FORMAT_R16G16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16G16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG16Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg16sint?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_SINT MTLPixelFormatRG16Sint} @@ -466,7 +466,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RGB16I; - * @def_vk_keyword{FORMAT_R16G16B16_SINT,Format}. No 48-bit D3D or Metal + * @val_vk_keyword{FORMAT_R16G16B16_SINT,Format}. No 48-bit D3D or Metal * equivalent. */ RGB16I, @@ -476,7 +476,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::Short, @ref GL::TextureFormat::RGBA16I; - * @def_vk_keyword{FORMAT_R16G16B16A16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA16Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba16sint?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_SINT MTLPixelFormatRGBA16Sint} @@ -488,7 +488,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::UnsignedInt, @ref GL::TextureFormat::R32UI; - * @def_vk_keyword{FORMAT_R32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR32Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr32uint?language=objc). * @m_keywords{DXGI_FORMAT_R32_UINT MTLPixelFormatR32Uint} @@ -500,7 +500,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::UnsignedInt, @ref GL::TextureFormat::RG32UI; - * @def_vk_keyword{FORMAT_R32G32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32G32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG32Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg32uint?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_UINT MTLPixelFormatRG32Uint} @@ -512,7 +512,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::UnsignedInt, @ref GL::TextureFormat::RGB32UI; - * @def_vk_keyword{FORMAT_R32G32B32_UINT,Format} or + * @val_vk_keyword{FORMAT_R32G32B32_UINT,Format} or * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format). * No 96-bit Metal equivalent. * @m_keywords{DXGI_FORMAT_R32G32B32_UINT} @@ -524,7 +524,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::UnsignedInt, @ref GL::TextureFormat::RGBA32UI; - * @def_vk_keyword{FORMAT_R32G32B32A32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA32Uint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba32uint?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_UINT MTLPixelFormatRGBA32Uint} @@ -536,7 +536,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RedInteger and * @ref GL::PixelType::Int, @ref GL::TextureFormat::R32I; - * @def_vk_keyword{FORMAT_R32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR32Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr32sint?language=objc). * @m_keywords{DXGI_FORMAT_R32_SINT MTLPixelFormatR32Sint} @@ -548,7 +548,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGInteger and * @ref GL::PixelType::Int, @ref GL::TextureFormat::RG32I; - * @def_vk_keyword{FORMAT_R32G32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32G32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG32Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg32sint?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_SINT MTLPixelFormatRG32Sint} @@ -560,7 +560,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBInteger and * @ref GL::PixelType::Int, @ref GL::TextureFormat::RGB32I; - * @def_vk_keyword{FORMAT_R32G32B32_SINT,Format} or + * @val_vk_keyword{FORMAT_R32G32B32_SINT,Format} or * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format). * No 96-bit Metal equivalent. * @m_keywords{DXGI_FORMAT_R32G32B32_SINT} @@ -572,7 +572,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBAInteger and * @ref GL::PixelType::Int, @ref GL::TextureFormat::RGBA32I; - * @def_vk_keyword{FORMAT_R32G32B32A32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA32Sint](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba32sint?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_SINT MTLPixelFormatRGBA32Sint} @@ -583,7 +583,7 @@ enum class PixelFormat: UnsignedInt { * Red component, half float. * * Corresponds to @ref GL::PixelFormat::Red and @ref GL::PixelType::Half, - * @ref GL::TextureFormat::R16F; @def_vk_keyword{FORMAT_R16_SFLOAT,Format}; + * @ref GL::TextureFormat::R16F; @val_vk_keyword{FORMAT_R16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR16Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr16float?language=objc). * @see @ref Half, @ref Math::packHalf(), @ref Math::unpackHalf() @@ -596,7 +596,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and @ref GL::PixelType::Half, * @ref GL::TextureFormat::RG16F; - * @def_vk_keyword{FORMAT_R16G16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16G16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG16Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg16float?language=objc). * @see @ref Half, @ref Math::packHalf(), @ref Math::unpackHalf() @@ -609,7 +609,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and @ref GL::PixelType::Half, * @ref GL::TextureFormat::RGB16F; - * @def_vk_keyword{FORMAT_R16G16B16_SFLOAT,Format}. No 48-bit D3D or Metal + * @val_vk_keyword{FORMAT_R16G16B16_SFLOAT,Format}. No 48-bit D3D or Metal * equivalent. * @see @ref Half, @ref Math::packHalf(), @ref Math::unpackHalf() */ @@ -620,7 +620,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and @ref GL::PixelType::Half, * @ref GL::TextureFormat::RGBA16F; - * @def_vk_keyword{FORMAT_R16G16B16A16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA16Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba16float?language=objc). * @see @ref Half, @ref Math::packHalf(), @ref Math::unpackHalf() @@ -633,7 +633,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::Red and * @ref GL::PixelType::Float, @ref GL::TextureFormat::R32F; - * @def_vk_keyword{FORMAT_R32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatR32Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatr32float?language=objc). * @m_keywords{DXGI_FORMAT_R32_FLOAT MTLPixelFormatR32Float} @@ -645,7 +645,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RG and * @ref GL::PixelType::Float, @ref GL::TextureFormat::RG32F; - * @def_vk_keyword{FORMAT_R32G32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32G32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRG32Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrg32float?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_FLOAT MTLPixelFormatRG32Float} @@ -657,7 +657,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGB and * @ref GL::PixelType::Float, @ref GL::TextureFormat::RGB32F; - * @def_vk_keyword{FORMAT_R32G32B32_SFLOAT,Format} or + * @val_vk_keyword{FORMAT_R32G32B32_SFLOAT,Format} or * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format). * No 96-bit Metal equivalent. * @m_keywords{DXGI_FORMAT_R32G32B32_UINT} @@ -669,7 +669,7 @@ enum class PixelFormat: UnsignedInt { * * Corresponds to @ref GL::PixelFormat::RGBA and * @ref GL::PixelType::Float, @ref GL::TextureFormat::RGBA32F; - * @def_vk_keyword{FORMAT_R32G32B32A32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatRGBA32Float](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatrgba32float?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_FLOAT MTLPixelFormatRGBA32Float} @@ -766,7 +766,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBS3tcDxt1, * @ref GL::TextureFormat::CompressedRGBS3tcDxt1 or - * @def_vk_keyword{FORMAT_BC1_RGB_UNORM_BLOCK,Format}. No D3D or Metal + * @val_vk_keyword{FORMAT_BC1_RGB_UNORM_BLOCK,Format}. No D3D or Metal * equivalent. */ Bc1RGBUnorm = 1, @@ -777,7 +777,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBS3tcDxt1, * @ref GL::TextureFormat::CompressedSRGBS3tcDxt1 or - * @def_vk_keyword{FORMAT_BC1_RGB_SRGB_BLOCK,Format}. No D3D or Metal + * @val_vk_keyword{FORMAT_BC1_RGB_SRGB_BLOCK,Format}. No D3D or Metal * equivalent. * @m_since{2019,10} */ @@ -789,7 +789,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAS3tcDxt1, * @ref GL::TextureFormat::CompressedRGBAS3tcDxt1; - * @def_vk_keyword{FORMAT_BC1_RGBA_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC1_RGBA_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC1_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC1_RGBA](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc1_rgba?language=objc). * @m_keywords{DXGI_FORMAT_BC1_UNORM MTLPixelFormatBC1_RGBA} @@ -802,7 +802,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaS3tcDxt1, * @ref GL::TextureFormat::CompressedSRGBAlphaS3tcDxt1; - * @def_vk_keyword{FORMAT_BC1_RGBA_SRGB_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC1_RGBA_SRGB_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC1_UNORM_SRGB](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC1_RGBA_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc1_rgba_srgb?language=objc). * @m_keywords{DXGI_FORMAT_BC1_UNORM_SRGB MTLPixelFormatBC1_RGBA_sRGB} @@ -816,7 +816,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAS3tcDxt3, * @ref GL::TextureFormat::CompressedRGBAS3tcDxt3; - * @def_vk_keyword{FORMAT_BC2_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC2_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC2_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC2_RGBA](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc2_rgba?language=objc). * @m_keywords{DXGI_FORMAT_BC2_UNORM MTLPixelFormatBC2_RGBA} @@ -829,7 +829,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaS3tcDxt3, * @ref GL::TextureFormat::CompressedSRGBAlphaS3tcDxt3; - * @def_vk_keyword{FORMAT_BC2_SRGB_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC2_SRGB_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC2_UNORM_SRGB](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC2_RGBA_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc2_rgba_srgb?language=objc). * @m_keywords{DXGI_FORMAT_BC2_UNORM_SRGB MTLPixelFormatBC2_RGBA_sRGB} @@ -843,7 +843,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAS3tcDxt5, * @ref GL::TextureFormat::CompressedRGBAS3tcDxt5; - * @def_vk_keyword{FORMAT_BC3_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC3_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC3_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC3_RGBA](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc3_rgba?language=objc). * @m_keywords{DXGI_FORMAT_BC3_UNORM MTLPixelFormatBC3_RGBA} @@ -856,7 +856,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaS3tcDxt5, * @ref GL::TextureFormat::CompressedSRGBAlphaS3tcDxt5; - * @def_vk_keyword{FORMAT_BC3_SRGB_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC3_SRGB_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC3_UNORM_SRGB](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC3_RGBA_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc3_rgba_srgb?language=objc). * @m_keywords{DXGI_FORMAT_BC3_UNORM_SRGB MTLPixelFormatBC3_RGBA_sRGB} @@ -870,7 +870,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RedRgtc1, * @ref GL::TextureFormat::CompressedRedRgtc1; - * @def_vk_keyword{FORMAT_BC4_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC4_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC4_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC4_RUnorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc4_runorm?language=objc). * @m_keywords{DXGI_FORMAT_BC4_UNORM MTLPixelFormatBC4_RUnorm} @@ -884,7 +884,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SignedRedRgtc1, * @ref GL::TextureFormat::CompressedSignedRedRgtc1; - * @def_vk_keyword{FORMAT_BC4_SNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC4_SNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC4_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC4_RSnorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc4_rsnorm?language=objc). * @m_keywords{DXGI_FORMAT_BC4_SNORM MTLPixelFormatBC4_RSnorm} @@ -898,7 +898,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGRgtc2, * @ref GL::TextureFormat::CompressedRGRgtc2; - * @def_vk_keyword{FORMAT_BC5_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC5_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC5_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC5_RGUnorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc5_rgunorm?language=objc). * @m_keywords{DXGI_FORMAT_BC5_UNORM MTLPixelFormatBC5_RGUnorm} @@ -912,7 +912,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SignedRGRgtc2, * @ref GL::TextureFormat::CompressedSignedRGRgtc2; - * @def_vk_keyword{FORMAT_BC5_SNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC5_SNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC5_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC5_RGSnorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc5_rgsnorm?language=objc). * @m_keywords{DXGI_FORMAT_BC5_SNORM MTLPixelFormatBC5_RGSnorm} @@ -926,7 +926,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBBptcUnsignedFloat, * @ref GL::TextureFormat::CompressedRGBBptcUnsignedFloat; - * @def_vk_keyword{FORMAT_BC6H_UFLOAT_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC6H_UFLOAT_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC6H_UF16](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC6H_RGBUfloat](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc6h_rgbufloat?language=objc). * @m_keywords{DXGI_FORMAT_BC6H_UF16 MTLPixelFormatBC6H_RGBUfloat} @@ -940,7 +940,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBBptcSignedFloat, * @ref GL::TextureFormat::CompressedRGBBptcSignedFloat; - * @def_vk_keyword{FORMAT_BC6H_SFLOAT_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC6H_SFLOAT_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC6H_SF16](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC6H_RGBFloat](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc6h_rgbfloat?language=objc). * @m_keywords{DXGI_FORMAT_BC6H_UF16 MTLPixelFormatBC6H_RGBFloat} @@ -954,7 +954,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBABptcUnorm, * @ref GL::TextureFormat::CompressedRGBABptcUnorm; - * @def_vk_keyword{FORMAT_BC7_UNORM_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC7_UNORM_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC7_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC7_RGBAUnorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc7_rgbaunorm?language=objc). * @m_keywords{DXGI_FORMAT_BC7_UNORM MTLPixelFormatBC7_RGBAUnorm} @@ -968,7 +968,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaBptcUnorm, * @ref GL::TextureFormat::CompressedSRGBAlphaBptcUnorm; - * @def_vk_keyword{FORMAT_BC7_SRGB_BLOCK,Format}; + * @val_vk_keyword{FORMAT_BC7_SRGB_BLOCK,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_BC7_UNORM_SRGB](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLPixelFormatBC7_RGBAUnorm_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatbc7_rgbaunorm_srgb?language=objc). * @m_keywords{DXGI_FORMAT_BC7_UNORM_SRGB MTLPixelFormatBC7_RGBAUnorm_sRGB} @@ -982,7 +982,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::R11Eac, * @ref GL::TextureFormat::CompressedR11Eac; - * @def_vk_keyword{FORMAT_EAC_R11_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_EAC_R11_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_R11Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_r11unorm?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_R11Unorm} @@ -996,7 +996,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SignedR11Eac, * @ref GL::TextureFormat::CompressedSignedR11Eac; - * @def_vk_keyword{FORMAT_EAC_R11_SNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_EAC_R11_SNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_R11Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_r11snorm?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_R11Unorm} @@ -1010,7 +1010,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RG11Eac, * @ref GL::TextureFormat::CompressedRG11Eac; - * @def_vk_keyword{FORMAT_EAC_R11G11_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_EAC_R11G11_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_RG11Unorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_rg11unorm?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_R11Unorm} @@ -1024,7 +1024,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SignedRG11Eac, * @ref GL::TextureFormat::CompressedSignedRG11Eac; - * @def_vk_keyword{FORMAT_EAC_R11G11_SNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_EAC_R11G11_SNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_RG11Snorm](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_rg11snorm?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_RG11Snorm} @@ -1038,7 +1038,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGB8Etc2, * @ref GL::TextureFormat::CompressedRGB8Etc2; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatETC2_RGB8](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatetc2_rgb8?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatETC2_RGB8} @@ -1052,7 +1052,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Etc2, * @ref GL::TextureFormat::CompressedSRGB8Etc2; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatETC2_RGB8_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatetc2_rgb8_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatETC2_RGB8_sRGB} @@ -1066,7 +1066,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGB8PunchthroughAlpha1Etc2, * @ref GL::TextureFormat::CompressedRGB8PunchthroughAlpha1Etc2; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8A1_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatETC2_RGB8A1](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatetc2_rgb8a1?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatETC2_RGB8A1} @@ -1080,7 +1080,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8PunchthroughAlpha1Etc2, * @ref GL::TextureFormat::CompressedSRGB8PunchthroughAlpha1Etc2; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8A1_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatETC2_RGB8A1_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatetc2_rgb8a1_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatETC2_RGB8A1_sRGB} @@ -1094,7 +1094,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBA8Etc2Eac, * @ref GL::TextureFormat::CompressedRGBA8Etc2Eac; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8A8_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_RGBA8](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_rgba8?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_RGBA8} @@ -1108,7 +1108,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Etc2Eac, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Etc2Eac; - * @def_vk_keyword{FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ETC2_R8G8B8A8_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatEAC_RGBA8_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformateac_rgba8_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatEAC_RGBA8_sRGB} @@ -1122,7 +1122,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4, * @ref GL::TextureFormat::CompressedRGBAAstc4x4; - * @def_vk_keyword{FORMAT_ASTC_4x4_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_4x4_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_4x4_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_4x4_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_4x4_LDR} @@ -1137,7 +1137,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc4x4, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc4x4; - * @def_vk_keyword{FORMAT_ASTC_4x4_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_4x4_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_4x4_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_4x4_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_4x4_sRGB} @@ -1151,7 +1151,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4, * @ref GL::TextureFormat::CompressedRGBAAstc4x4; - * @def_vk_keyword{FORMAT_ASTC_4x4_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_4x4_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_4x4_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_4x4_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_4x4_HDR} @@ -1165,7 +1165,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x4; - * @def_vk_keyword{FORMAT_ASTC_5x4_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x4_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x4_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x4_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x4_LDR} @@ -1180,7 +1180,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc5x4, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc5x4; - * @def_vk_keyword{FORMAT_ASTC_5x4_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x4_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x4_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x4_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x4_sRGB} @@ -1194,7 +1194,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x4; - * @def_vk_keyword{FORMAT_ASTC_5x4_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x4_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x4_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x4_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x4_HDR} @@ -1208,7 +1208,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5, * @ref GL::TextureFormat::CompressedRGBAAstc5x5; - * @def_vk_keyword{FORMAT_ASTC_5x5_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x5_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x5_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x5_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x5_LDR} @@ -1223,7 +1223,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc5x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc5x5; - * @def_vk_keyword{FORMAT_ASTC_5x5_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x5_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x5_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x5_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x5_sRGB} @@ -1237,7 +1237,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5, * @ref GL::TextureFormat::CompressedRGBAAstc5x5; - * @def_vk_keyword{FORMAT_ASTC_5x5_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_5x5_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_5x5_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_5x5_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_5x5_HDR} @@ -1251,7 +1251,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x5; - * @def_vk_keyword{FORMAT_ASTC_6x5_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x5_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x5_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x5_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x5_LDR} @@ -1266,7 +1266,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc6x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc6x5; - * @def_vk_keyword{FORMAT_ASTC_6x5_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x5_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x5_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x5_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x5_sRGB} @@ -1280,7 +1280,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x5; - * @def_vk_keyword{FORMAT_ASTC_6x5_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x5_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x5_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x5_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x5_HDR} @@ -1294,7 +1294,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6, * @ref GL::TextureFormat::CompressedRGBAAstc6x6; - * @def_vk_keyword{FORMAT_ASTC_6x6_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x6_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x6_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x6_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x6_LDR} @@ -1309,7 +1309,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc6x6, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc6x6; - * @def_vk_keyword{FORMAT_ASTC_6x6_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x6_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x6_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x6_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x6_sRGB} @@ -1323,7 +1323,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6, * @ref GL::TextureFormat::CompressedRGBAAstc6x6; - * @def_vk_keyword{FORMAT_ASTC_6x6_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_6x6_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_6x6_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_6x6_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_6x6_HDR} @@ -1337,7 +1337,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x5, * @ref GL::TextureFormat::CompressedRGBAAstc8x5; - * @def_vk_keyword{FORMAT_ASTC_8x5_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x5_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x5_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x5_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x5_LDR} @@ -1352,7 +1352,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc8x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc8x5; - * @def_vk_keyword{FORMAT_ASTC_8x5_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x5_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x5_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x5_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x5_sRGB} @@ -1366,7 +1366,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x5, * @ref GL::TextureFormat::CompressedRGBAAstc8x5; - * @def_vk_keyword{FORMAT_ASTC_8x5_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x5_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x5_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x5_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x5_HDR} @@ -1380,7 +1380,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x6, * @ref GL::TextureFormat::CompressedRGBAAstc8x6; - * @def_vk_keyword{FORMAT_ASTC_8x6_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x6_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x6_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x6_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x6_LDR} @@ -1395,7 +1395,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc8x6, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc8x6; - * @def_vk_keyword{FORMAT_ASTC_8x6_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x6_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x6_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x6_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x6_sRGB} @@ -1409,7 +1409,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x6, * @ref GL::TextureFormat::CompressedRGBAAstc8x6; - * @def_vk_keyword{FORMAT_ASTC_8x6_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x6_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x6_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x6_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x6_HDR} @@ -1423,7 +1423,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x8, * @ref GL::TextureFormat::CompressedRGBAAstc8x8; - * @def_vk_keyword{FORMAT_ASTC_8x8_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x8_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x8_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x8_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x8_LDR} @@ -1438,7 +1438,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc8x8, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc8x8; - * @def_vk_keyword{FORMAT_ASTC_8x8_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x8_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x8_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x8_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x8_sRGB} @@ -1452,7 +1452,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc8x8, * @ref GL::TextureFormat::CompressedRGBAAstc8x8; - * @def_vk_keyword{FORMAT_ASTC_8x8_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_8x8_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_8x8_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_8x8_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_8x8_HDR} @@ -1466,7 +1466,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x5, * @ref GL::TextureFormat::CompressedRGBAAstc10x5; - * @def_vk_keyword{FORMAT_ASTC_10x5_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x5_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x5_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x5_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x5_LDR} @@ -1481,7 +1481,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc10x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc10x5; - * @def_vk_keyword{FORMAT_ASTC_10x5_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x5_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x5_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x5_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x5_sRGB} @@ -1495,7 +1495,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x5, * @ref GL::TextureFormat::CompressedRGBAAstc10x5; - * @def_vk_keyword{FORMAT_ASTC_10x5_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x5_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x5_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x5_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x5_HDR} @@ -1509,7 +1509,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x6, * @ref GL::TextureFormat::CompressedRGBAAstc10x6; - * @def_vk_keyword{FORMAT_ASTC_10x6_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x6_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x6_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x6_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x6_LDR} @@ -1524,7 +1524,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc10x6, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc10x6; - * @def_vk_keyword{FORMAT_ASTC_10x6_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x6_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x6_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x6_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x6_sRGB} @@ -1538,7 +1538,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x6, * @ref GL::TextureFormat::CompressedRGBAAstc10x6; - * @def_vk_keyword{FORMAT_ASTC_10x6_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x6_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x6_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x6_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x6_HDR} @@ -1552,7 +1552,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x8, * @ref GL::TextureFormat::CompressedRGBAAstc10x8; - * @def_vk_keyword{FORMAT_ASTC_10x8_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x8_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x8_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x8_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x8_LDR} @@ -1567,7 +1567,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc10x8, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc10x8; - * @def_vk_keyword{FORMAT_ASTC_10x8_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x8_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x8_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x8_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x8_sRGB} @@ -1581,7 +1581,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x8, * @ref GL::TextureFormat::CompressedRGBAAstc10x8; - * @def_vk_keyword{FORMAT_ASTC_10x8_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x8_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x8_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x8_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x8_HDR} @@ -1595,7 +1595,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x10, * @ref GL::TextureFormat::CompressedRGBAAstc10x10; - * @def_vk_keyword{FORMAT_ASTC_10x10_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x10_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x10_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x10_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x10_LDR} @@ -1610,7 +1610,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc10x10, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc10x10; - * @def_vk_keyword{FORMAT_ASTC_10x10_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x10_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x10_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x10_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x10_sRGB} @@ -1624,7 +1624,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc10x10, * @ref GL::TextureFormat::CompressedRGBAAstc10x10; - * @def_vk_keyword{FORMAT_ASTC_10x10_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_10x10_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_10x10_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_10x10_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_10x10_HDR} @@ -1638,7 +1638,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc12x10, * @ref GL::TextureFormat::CompressedRGBAAstc12x10; - * @def_vk_keyword{FORMAT_ASTC_12x10_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x10_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x10_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x10_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x10_LDR} @@ -1653,7 +1653,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc12x10, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc12x10; - * @def_vk_keyword{FORMAT_ASTC_12x10_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x10_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x10_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x10_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x10_sRGB} @@ -1667,7 +1667,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc12x10, * @ref GL::TextureFormat::CompressedRGBAAstc12x10; - * @def_vk_keyword{FORMAT_ASTC_12x10_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x10_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x10_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x10_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x10_HDR} @@ -1681,7 +1681,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc12x12, * @ref GL::TextureFormat::CompressedRGBAAstc12x12; - * @def_vk_keyword{FORMAT_ASTC_12x12_UNORM_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x12_UNORM_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x12_LDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x12_ldr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x12_LDR} @@ -1696,7 +1696,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc12x12, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc12x12; - * @def_vk_keyword{FORMAT_ASTC_12x12_SRGB_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x12_SRGB_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x12_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x12_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x12_sRGB} @@ -1710,7 +1710,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc12x12, * @ref GL::TextureFormat::CompressedRGBAAstc12x12; - * @def_vk_keyword{FORMAT_ASTC_12x12_SFLOAT_BLOCK,Format} or + * @val_vk_keyword{FORMAT_ASTC_12x12_SFLOAT_BLOCK,Format} or * @m_class{m-doc-external} [MTLPixelFormatASTC_12x12_HDR](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatastc_12x12_hdr?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatASTC_12x12_HDR} @@ -1724,7 +1724,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc3x3x3, * @ref GL::TextureFormat::CompressedRGBAAstc3x3x3; - * and @def_vk_keyword{FORMAT_ASTC_3x3x3_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_3x3x3_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1738,7 +1738,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc3x3x3, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc3x3x3; - * and @def_vk_keyword{FORMAT_ASTC_3x3x3_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_3x3x3_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1751,7 +1751,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc3x3x3, * @ref GL::TextureFormat::CompressedRGBAAstc3x3x3; - * and @def_vk_keyword{FORMAT_ASTC_3x3x3_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_3x3x3_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1764,7 +1764,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x3x3, * @ref GL::TextureFormat::CompressedRGBAAstc4x3x3; - * and @def_vk_keyword{FORMAT_ASTC_4x3x3_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x3x3_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1778,7 +1778,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc4x3x3, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc4x3x3; - * and @def_vk_keyword{FORMAT_ASTC_4x3x3_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x3x3_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1791,7 +1791,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x3x3, * @ref GL::TextureFormat::CompressedRGBAAstc4x3x3; - * and @def_vk_keyword{FORMAT_ASTC_4x3x3_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x3x3_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1804,7 +1804,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4x3, * @ref GL::TextureFormat::CompressedRGBAAstc4x4x3; - * and @def_vk_keyword{FORMAT_ASTC_4x4x3_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x3_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1818,7 +1818,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc4x4x3, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc4x4x3; - * and @def_vk_keyword{FORMAT_ASTC_4x4x3_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x3_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1831,7 +1831,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4x3, * @ref GL::TextureFormat::CompressedRGBAAstc4x4x3; - * and @def_vk_keyword{FORMAT_ASTC_4x4x3_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x3_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1844,7 +1844,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4x4, * @ref GL::TextureFormat::CompressedRGBAAstc4x4x4; - * and @def_vk_keyword{FORMAT_ASTC_4x4x4_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x4_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1858,7 +1858,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc4x4x4, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc4x4x4; - * and @def_vk_keyword{FORMAT_ASTC_4x4x4_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x4_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1871,7 +1871,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc4x4x4, * @ref GL::TextureFormat::CompressedRGBAAstc4x4x4; - * and @def_vk_keyword{FORMAT_ASTC_4x4x4_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_4x4x4_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1884,7 +1884,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x4x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x4x4; - * and @def_vk_keyword{FORMAT_ASTC_5x4x4_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x4x4_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1898,7 +1898,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc5x4x4, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc5x4x4; - * and @def_vk_keyword{FORMAT_ASTC_5x4x4_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x4x4_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1911,7 +1911,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x4x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x4x4; - * and @def_vk_keyword{FORMAT_ASTC_5x4x4_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x4x4_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1924,7 +1924,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x5x4; - * and @def_vk_keyword{FORMAT_ASTC_5x5x4_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x4_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1938,7 +1938,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc5x5x4, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc5x5x4; - * and @def_vk_keyword{FORMAT_ASTC_5x5x4_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x4_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1951,7 +1951,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5x4, * @ref GL::TextureFormat::CompressedRGBAAstc5x5x4; - * and @def_vk_keyword{FORMAT_ASTC_5x5x4_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x4_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1964,7 +1964,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5x5, * @ref GL::TextureFormat::CompressedRGBAAstc5x5x5; - * and @def_vk_keyword{FORMAT_ASTC_5x5x5_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x5_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1978,7 +1978,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc5x5x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc5x5x5; - * and @def_vk_keyword{FORMAT_ASTC_5x5x5_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x5_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -1991,7 +1991,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc5x5x5, * @ref GL::TextureFormat::CompressedRGBAAstc5x5x5; - * and @def_vk_keyword{FORMAT_ASTC_5x5x5_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_5x5x5_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2004,7 +2004,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x5x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x5x5; - * and @def_vk_keyword{FORMAT_ASTC_6x5x5_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x5x5_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2018,7 +2018,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc6x5x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc6x5x5; - * and @def_vk_keyword{FORMAT_ASTC_6x5x5_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x5x5_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2031,7 +2031,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x5x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x5x5; - * and @def_vk_keyword{FORMAT_ASTC_6x5x5_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x5x5_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2044,7 +2044,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x6x5; - * and @def_vk_keyword{FORMAT_ASTC_6x6x5_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x5_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2058,7 +2058,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc6x6x5, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc6x6x5; - * and @def_vk_keyword{FORMAT_ASTC_6x6x5_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x5_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2071,7 +2071,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6x5, * @ref GL::TextureFormat::CompressedRGBAAstc6x6x5; - * and @def_vk_keyword{FORMAT_ASTC_6x6x5_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x5_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2084,7 +2084,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6x6, * @ref GL::TextureFormat::CompressedRGBAAstc6x6x6; - * and @def_vk_keyword{FORMAT_ASTC_6x6x6_UNORM_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x6_UNORM_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2098,7 +2098,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGB8Alpha8Astc6x6x6, * @ref GL::TextureFormat::CompressedSRGB8Alpha8Astc6x6x6; - * and @def_vk_keyword{FORMAT_ASTC_6x6x6_SRGB_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x6_SRGB_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2111,7 +2111,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAAstc6x6x6, * @ref GL::TextureFormat::CompressedRGBAAstc6x6x6; - * and @def_vk_keyword{FORMAT_ASTC_6x6x6_SFLOAT_BLOCK_EXT,Format} (not a + * and @val_vk_keyword{FORMAT_ASTC_6x6x6_SFLOAT_BLOCK_EXT,Format} (not a * part of the spec yet, [only defined in KTX](https://github.com/KhronosGroup/KTX-Specification/pull/97/files)). * No equivalent in Metal or D3D. * @m_since{2019,10} @@ -2127,7 +2127,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBPvrtc2bppV1, * @ref GL::TextureFormat::CompressedRGBPvrtc2bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGB_2BPP](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgb_2bpp?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGB_2BPP} @@ -2141,7 +2141,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBPvrtc2bppV1, * @ref GL::TextureFormat::CompressedSRGBPvrtc2bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGB_2BPP_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgb_2bpp_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGB_2BPP_sRGB} @@ -2155,7 +2155,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAPvrtc2bppV1, * @ref GL::TextureFormat::CompressedRGBAPvrtc2bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_2BPP_UNORM_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGBA_2BPP](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgba_2bpp?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGBA_2BPP} @@ -2169,7 +2169,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaPvrtc2bppV1, * @ref GL::TextureFormat::CompressedSRGBAlphaPvrtc2bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_2BPP_SRGB_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGBA_2BPP_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgba_2bpp_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGBA_2BPP_sRGB} @@ -2183,7 +2183,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBPvrtc4bppV1, * @ref GL::TextureFormat::CompressedRGBPvrtc4bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGB_4BPP](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgb_4bpp?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGB_4BPP} @@ -2197,7 +2197,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBPvrtc4bppV1, * @ref GL::TextureFormat::CompressedSRGBPvrtc4bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGB_4BPP_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgb_4bpp_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGB_4BPP_sRGB} @@ -2211,7 +2211,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::RGBAPvrtc4bppV1, * @ref GL::TextureFormat::CompressedRGBAPvrtc4bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_4BPP_UNORM_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGBA_4BPP](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgba_4bpp?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGBA_4BPP} @@ -2225,7 +2225,7 @@ enum class CompressedPixelFormat: UnsignedInt { * * Corresponds to @ref GL::CompressedPixelFormat::SRGBAlphaPvrtc4bppV1, * @ref GL::TextureFormat::CompressedSRGBAlphaPvrtc4bppV1 / - * @def_vk_keyword{FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG,Format} or + * @val_vk_keyword{FORMAT_PVRTC1_4BPP_SRGB_BLOCK_IMG,Format} or * @m_class{m-doc-external} [MTLPixelFormatPVRTC_RGBA_4BPP_sRGB](https://developer.apple.com/documentation/metal/mtlpixelformat/mtlpixelformatpvrtc_rgba_4bpp_srgb?language=objc). * No equivalent in D3D. * @m_keywords{MTLPixelFormatPVRTC_RGBA_4BPP_sRGB} diff --git a/src/Magnum/Sampler.h b/src/Magnum/Sampler.h index 644a10f70..f89ff38c8 100644 --- a/src/Magnum/Sampler.h +++ b/src/Magnum/Sampler.h @@ -55,7 +55,7 @@ enum class SamplerFilter: UnsignedInt { * Nearest neighbor filtering. * * Corresponds to @ref GL::SamplerFilter::Nearest / - * @def_vk_keyword{FILTER_NEAREST,Filter}. + * @val_vk_keyword{FILTER_NEAREST,Filter}. */ Nearest = 0, @@ -63,7 +63,7 @@ enum class SamplerFilter: UnsignedInt { * Linear interpolation filtering. * * Corresponds to @ref GL::SamplerFilter::Linear / - * @def_vk_keyword{FILTER_LINEAR,Filter}. + * @val_vk_keyword{FILTER_LINEAR,Filter}. */ Linear }; @@ -90,7 +90,7 @@ enum class SamplerMipmap: UnsignedInt { * * Corresponds to @ref GL::SamplerMipmap::Base. On Vulkan, the * corresponding mode is - * @def_vk_keyword{SAMPLER_MIPMAP_MODE_NEAREST,SamplerMipmapMode} and you + * @val_vk_keyword{SAMPLER_MIPMAP_MODE_NEAREST,SamplerMipmapMode} and you * have to configure the sampler to use just a single mipmap level. */ Base = 0, @@ -99,7 +99,7 @@ enum class SamplerMipmap: UnsignedInt { * Select nearest mip level. * * Corresponds to @ref GL::SamplerMipmap::Nearest / - * @def_vk_keyword{SAMPLER_MIPMAP_MODE_NEAREST,SamplerMipmapMode}. + * @val_vk_keyword{SAMPLER_MIPMAP_MODE_NEAREST,SamplerMipmapMode}. */ Nearest, @@ -107,7 +107,7 @@ enum class SamplerMipmap: UnsignedInt { * Linear interpolation of nearest mip levels. * * Corresponds to @ref GL::SamplerMipmap::Linear / - * @def_vk_keyword{SAMPLER_MIPMAP_MODE_LINEAR,SamplerMipmapMode}. + * @val_vk_keyword{SAMPLER_MIPMAP_MODE_LINEAR,SamplerMipmapMode}. */ Linear }; @@ -135,7 +135,7 @@ enum class SamplerWrapping: UnsignedInt { * Repeat texture. * * Corresponds to @ref GL::SamplerWrapping::Repeat / - * @def_vk_keyword{SAMPLER_ADDRESS_MODE_REPEAT,SamplerAddressMode}. + * @val_vk_keyword{SAMPLER_ADDRESS_MODE_REPEAT,SamplerAddressMode}. */ Repeat = 0, @@ -143,7 +143,7 @@ enum class SamplerWrapping: UnsignedInt { * Repeat mirrored texture. * * Corresponds to @ref GL::SamplerWrapping::MirroredRepeat / - * @def_vk_keyword{SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT,SamplerAddressMode}. + * @val_vk_keyword{SAMPLER_ADDRESS_MODE_MIRRORED_REPEAT,SamplerAddressMode}. */ MirroredRepeat, @@ -152,7 +152,7 @@ enum class SamplerWrapping: UnsignedInt { * first / last column / row in given direction. * * Corresponds to @ref GL::SamplerWrapping::ClampToEdge / - * @def_vk_keyword{SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,SamplerAddressMode}. + * @val_vk_keyword{SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,SamplerAddressMode}. */ ClampToEdge, @@ -161,7 +161,7 @@ enum class SamplerWrapping: UnsignedInt { * to border color. * * Corresponds to @ref GL::SamplerWrapping::ClampToBorder / - * @def_vk_keyword{SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER,SamplerAddressMode}. + * @val_vk_keyword{SAMPLER_ADDRESS_MODE_CLAMP_TO_BORDER,SamplerAddressMode}. */ ClampToBorder, diff --git a/src/Magnum/VertexFormat.h b/src/Magnum/VertexFormat.h index 79ee33019..589f037c2 100644 --- a/src/Magnum/VertexFormat.h +++ b/src/Magnum/VertexFormat.h @@ -76,7 +76,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Float; - * @def_vk_keyword{FORMAT_R32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatFloat](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatfloat?language=objc). * @m_keywords{DXGI_FORMAT_R32_FLOAT MTLVertexFormatFloat} @@ -88,7 +88,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Half; - * @def_vk_keyword{FORMAT_R16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatHalf](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformathalf?language=objc). * @m_keywords{DXGI_FORMAT_R16_FLOAT MTLVertexFormatHalf} @@ -101,7 +101,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Long * @ref GL::DynamicAttribute::DataType::Double; - * @def_vk_keyword{FORMAT_R64_SFLOAT,Format}. No D3D or Metal equivalent. + * @val_vk_keyword{FORMAT_R64_SFLOAT,Format}. No D3D or Metal equivalent. */ Double, @@ -111,7 +111,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar?language=objc) * @m_keywords{DXGI_FORMAT_R8_UINT MTLVertexFormatUChar} @@ -125,7 +125,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUCharNormalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatucharnormalized?language=objc). * @m_keywords{DXGI_FORMAT_R8_UNORM MTLVertexFormatUCharNormalized} @@ -138,7 +138,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar?language=objc). * @m_keywords{DXGI_FORMAT_R8_SINT MTLVertexFormatChar} @@ -152,7 +152,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatCharNormalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatcharnormalized?language=objc). * @m_keywords{DXGI_FORMAT_R8_SNORM MTLVertexFormatCharNormalized} @@ -165,7 +165,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedShort; - * @def_vk_keyword{FORMAT_R16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort?language=objc). * @m_keywords{DXGI_FORMAT_R16_UINT MTLVertexFormatUShort} @@ -179,7 +179,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShortNormalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushortnormalized?language=objc). * @m_keywords{DXGI_FORMAT_R16_UNORM MTLVertexFormatUShortNormalized} @@ -192,7 +192,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort?language=objc). * @m_keywords{DXGI_FORMAT_R16_SINT MTLVertexFormatShort} @@ -206,7 +206,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShortNormalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshortnormalized?language=objc). * @m_keywords{DXGI_FORMAT_R16_SNORM MTLVertexFormatShortNormalized} @@ -219,7 +219,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedInt; - * @def_vk_keyword{FORMAT_R32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUInt](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuint?language=objc). * @m_keywords{DXGI_FORMAT_R32_UINT MTLVertexFormatUInt} @@ -232,7 +232,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to single-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Int; - * @def_vk_keyword{FORMAT_R32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatInt](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatint?language=objc). * @m_keywords{DXGI_FORMAT_R32_SINT MTLVertexFormatInt} @@ -244,7 +244,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Float; - * @def_vk_keyword{FORMAT_R32G32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32G32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatFloat2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatfloat2?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_FLOAT MTLVertexFormatFloat2} @@ -257,7 +257,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Half; - * @def_vk_keyword{FORMAT_R16G16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16G16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatHalf2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformathalf2?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_FLOAT MTLVertexFormatHalf2} @@ -270,7 +270,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Long * @ref GL::DynamicAttribute::DataType::Double; - * @def_vk_keyword{FORMAT_R64G64_SFLOAT,Format}. No D3D or Metal + * @val_vk_keyword{FORMAT_R64G64_SFLOAT,Format}. No D3D or Metal * equivalent. */ Vector2d, @@ -283,7 +283,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8G8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar2?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_UINT MTLVertexFormatUChar2} @@ -298,7 +298,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar2Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar2normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_UNORM MTLVertexFormatUChar2Normalized} @@ -313,7 +313,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8G8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar2?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_SINT MTLVertexFormatChar2} @@ -328,7 +328,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar2Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar2normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8_SNORM MTLVertexFormatChar2Normalized} @@ -343,7 +343,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedShort; - * @def_vk_keyword{FORMAT_R16G16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16G16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort2?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_UINT MTLVertexFormatUShort2} @@ -358,7 +358,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R16G16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort2Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort2normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_UNORM MTLVertexFormatUShort2Normalized} @@ -373,7 +373,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16G16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort2?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_SINT MTLVertexFormatShort2} @@ -388,7 +388,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort2Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort2normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16_SNORM MTLVertexFormatShort2Normalized} @@ -401,7 +401,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedInt; - * @def_vk_keyword{FORMAT_R32G32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32G32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUInt2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuint2?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_UINT MTLVertexFormatUInt2} @@ -414,7 +414,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to two-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Int; - * @def_vk_keyword{FORMAT_R32G32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32G32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatInt2](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatint2?language=objc). * @m_keywords{DXGI_FORMAT_R32G32_SINT MTLVertexFormatInt2} @@ -427,7 +427,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Float; - * @def_vk_keyword{FORMAT_R32G32B32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatFloat3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatfloat3?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32_FLOAT MTLVertexFormatFloat3} @@ -441,7 +441,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Half; - * @def_vk_keyword{FORMAT_R16G16B16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatHalf3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformathalf3?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16_FLOAT MTLVertexFormatHalf3} @@ -454,7 +454,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Long * @ref GL::DynamicAttribute::DataType::Double; - * @def_vk_keyword{FORMAT_R64G64B64_SFLOAT,Format}. No D3D or Metal + * @val_vk_keyword{FORMAT_R64G64B64_SFLOAT,Format}. No D3D or Metal * equivalent. */ Vector3d, @@ -467,7 +467,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8B8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar3?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8_UINT MTLVertexFormatUChar3} @@ -482,7 +482,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8B8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar3Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar3normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8_UNORM MTLVertexFormatUChar3Normalized} @@ -497,7 +497,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8B8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar3?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8_SINT MTLVertexFormatChar3} @@ -512,7 +512,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8B8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar3Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar3normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8_SNORM MTLVertexFormatChar3Normalized} @@ -527,7 +527,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedShort; - * @def_vk_keyword{FORMAT_R16G16B16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort3?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16_UINT MTLVertexFormatUShort3} @@ -543,7 +543,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R16G16B16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort3Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort3normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16_UNORM MTLVertexFormatUShort3Normalized} @@ -558,7 +558,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16B16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort3?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16_SINT MTLVertexFormatShort3} @@ -573,7 +573,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16B16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort3Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort3normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16_SNORM MTLVertexFormatShort3Normalized} @@ -586,7 +586,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedInt; - * @def_vk_keyword{FORMAT_R32G32B32_UINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUInt3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuint3?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32_UINT MTLVertexFormatUInt3} @@ -599,7 +599,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to three-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Int; - * @def_vk_keyword{FORMAT_R32G32B32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatInt3](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatint3?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32_SINT MTLVertexFormatInt3} @@ -611,7 +611,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Float; - * @def_vk_keyword{FORMAT_R32G32B32A32_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A32_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatFloat4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatfloat4?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_FLOAT MTLVertexFormatFloat4} @@ -624,7 +624,7 @@ enum class VertexFormat: UnsignedInt { * * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * @ref GL::DynamicAttribute::DataType::Half; - * @def_vk_keyword{FORMAT_R16G16B16A16_SFLOAT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SFLOAT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_FLOAT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatHalf4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformathalf4?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_FLOAT MTLVertexFormatHalf4} @@ -637,7 +637,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Long * @ref GL::DynamicAttribute::DataType::Double; - * @def_vk_keyword{FORMAT_R64G64B64A64_SFLOAT,Format}. No D3D or Metal + * @val_vk_keyword{FORMAT_R64G64B64A64_SFLOAT,Format}. No D3D or Metal * equivalent. */ Vector4d, @@ -648,7 +648,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8B8A8_UINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar4?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_UINT MTLVertexFormatUChar4} @@ -663,7 +663,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R8G8B8A8_UNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUChar4Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuchar4normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_UNORM MTLVertexFormatUChar4Normalized} @@ -676,7 +676,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8B8A8_SINT,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar4?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_SINT MTLVertexFormatChar4} @@ -690,7 +690,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Byte; - * @def_vk_keyword{FORMAT_R8G8B8A8_SNORM,Format}; + * @val_vk_keyword{FORMAT_R8G8B8A8_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R8G8B8A8_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatChar4Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatchar4normalized?language=objc). * @m_keywords{DXGI_FORMAT_R8G8B8A8_SNORM MTLVertexFormatChar4Normalized} @@ -703,7 +703,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedShort; - * @def_vk_keyword{FORMAT_R16G16B16A16_UINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort4?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_UINT MTLVertexFormatUShort4} @@ -718,7 +718,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::UnsignedByte; - * @def_vk_keyword{FORMAT_R16G16B16A16_UNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_UNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_UNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUShort4Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatushort4normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_UNORM MTLVertexFormatUShort4Normalized} @@ -731,7 +731,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16B16A16_SINT,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort4?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_SINT MTLVertexFormatShort4} @@ -745,7 +745,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component * @ref GL::DynamicAttribute::Kind::GenericNormalized * @ref GL::DynamicAttribute::DataType::Short; - * @def_vk_keyword{FORMAT_R16G16B16A16_SNORM,Format}; + * @val_vk_keyword{FORMAT_R16G16B16A16_SNORM,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R16G16B16A16_SNORM](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatShort4Normalized](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatshort4normalized?language=objc). * @m_keywords{DXGI_FORMAT_R16G16B16A16_SNORM MTLVertexFormatShort4Normalized} @@ -758,7 +758,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::UnsignedInt; - * @def_vk_keyword{FORMAT_R32G32B32A16_UINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A16_UINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_UINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatUInt4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatuint4?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_UINT MTLVertexFormatUInt4} @@ -771,7 +771,7 @@ enum class VertexFormat: UnsignedInt { * Corresponds to four-component @ref GL::DynamicAttribute::Kind::Generic * or @ref GL::DynamicAttribute::Kind::Integral * @ref GL::DynamicAttribute::DataType::Int; - * @def_vk_keyword{FORMAT_R32G32B32A32_SINT,Format}; + * @val_vk_keyword{FORMAT_R32G32B32A32_SINT,Format}; * @m_class{m-doc-external} [DXGI_FORMAT_R32G32B32A32_SINT](https://docs.microsoft.com/en-us/windows/win32/api/dxgiformat/ne-dxgiformat-dxgi_format) * or @m_class{m-doc-external} [MTLVertexFormatInt4](https://developer.apple.com/documentation/metal/mtlvertexformat/mtlvertexformatint4?language=objc). * @m_keywords{DXGI_FORMAT_R32G32B32A32_SINT MTLVertexFormatInt4} diff --git a/src/Magnum/Vk/Enums.h b/src/Magnum/Vk/Enums.h index a2eb356ec..e33db70e8 100644 --- a/src/Magnum/Vk/Enums.h +++ b/src/Magnum/Vk/Enums.h @@ -200,7 +200,7 @@ 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 +@val_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() */