From 6ed4f6fe7f23120556604c4e061731c974fb4aee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Sat, 18 Feb 2017 23:31:04 +0100 Subject: [PATCH] Sloppy Doxygen docs are sloppy. Note to myself: don't write docs under pressure. --- src/Magnum/BufferImage.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Magnum/BufferImage.h b/src/Magnum/BufferImage.h index 7e626edcf..42c58a40f 100644 --- a/src/Magnum/BufferImage.h +++ b/src/Magnum/BufferImage.h @@ -135,7 +135,7 @@ template class BufferImage { * @ref PixelFormat::RGBA and @ref PixelType::UnsignedByte. Useful in * cases where you will overwrite the instance later anyway. Move * another object over it to make it useful. - * @see @ref BufferImage(), @ref wrap() + * @see @ref BufferImage(), @ref Buffer::wrap() */ explicit BufferImage(NoCreateT) noexcept; @@ -318,8 +318,8 @@ template class CompressedBufferImage { * @param storage Storage of compressed pixel data * @param format Format of compressed pixel data * @param size Image size - * @param data Image data - * @param usage Image buffer usage + * @param buffer Image data + * @param dataSize Image buffer usage * * @requires_gl42 Extension @extension{ARB,compressed_texture_pixel_storage} * @requires_gl Compressed pixel storage is hardcoded in OpenGL ES and @@ -365,7 +365,7 @@ template class CompressedBufferImage { * The constructed instance is equivalent to moved-from state. Useful * in cases where you will overwrite the instance later anyway. Move * another object over it to make it useful. - * @see @ref BufferImage(), @ref wrap() + * @see @ref CompressedBufferImage(), @ref Buffer::wrap() */ explicit CompressedBufferImage(NoCreateT) noexcept;