From 12c5476f14b628a388c72735272b9c45a1c6d461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 16 Mar 2020 12:19:24 +0100 Subject: [PATCH] doc: Vulkan does have 8-bit indices now. --- src/Magnum/Mesh.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/Mesh.h b/src/Magnum/Mesh.h index 4e8016572..ec50012c7 100644 --- a/src/Magnum/Mesh.h +++ b/src/Magnum/Mesh.h @@ -245,10 +245,10 @@ enum class MeshIndexType: UnsignedByte { /** * Unsigned byte * - * Corresponds to @ref GL::MeshIndexType::UnsignedByte. Not available on - * Vulkan. While available on OpenGL, at least AMD GPUs are known to - * suggest (via debug output) using 16-byte types instead for better - * efficiency. + * Corresponds to @ref GL::MeshIndexType::UnsignedByte / + * @def_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. */ UnsignedByte = 1,