From 5b4ce2c419c9f66d9a397c8f141e01d2c16c6201 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 20 Sep 2024 19:08:21 +0200 Subject: [PATCH] GL: this comment is just wrong. --- src/Magnum/GL/Attribute.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Magnum/GL/Attribute.h b/src/Magnum/GL/Attribute.h index 4a65335b2..d03379962 100644 --- a/src/Magnum/GL/Attribute.h +++ b/src/Magnum/GL/Attribute.h @@ -324,8 +324,8 @@ template class Attribute { * @ref Magnum::Vector4i "Vector4i"). * @param dataOptions Data options. Default is no options. * - * Vector stride is set to the size of the vector type (e.g. 9 for a - * @ref Magnum::Matrix3 "Matrix3"). + * Vector stride is set to the size of the vector type (e.g. + * @cpp 12 @ce for a @ref Magnum::Matrix3 "Matrix3"). */ constexpr Attribute(Components components, DataType dataType = Implementation::Attribute::DefaultDataType, DataOptions dataOptions = DataOptions()): Attribute{components, Implementation::Attribute::size(GLint(components), dataType), dataType, dataOptions} {}