From f2dbb9e8d96030ede84d4fa00aada3ee2ec3e631 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Thu, 9 Aug 2012 00:27:20 +0200 Subject: [PATCH] Don't copy unneeded from AbstractTexture documentation. --- src/BufferedTexture.h | 17 +++++++++++++---- src/Renderbuffer.h | 6 +++--- 2 files changed, 16 insertions(+), 7 deletions(-) diff --git a/src/BufferedTexture.h b/src/BufferedTexture.h index 591ef3c11..fca8f74fc 100644 --- a/src/BufferedTexture.h +++ b/src/BufferedTexture.h @@ -49,18 +49,27 @@ class BufferedTexture { public: /** @{ @name Internal buffered texture formats */ - /** @copydoc Renderbuffer::Components */ + /** + * @copybrief AbstractTexture::Components + * + * Like AbstractTexture::Components, without three-component RGB. + */ enum class Components { Red, RedGreen, RGBA }; - /** @copydoc Renderbuffer::ComponentType */ + /** + * @copybrief AbstractTexture::ComponentType + * + * Like AbstractTexture::ComponentType, without normalized signed + * types. + */ enum class ComponentType { UnsignedByte, Byte, UnsignedShort, Short, UnsignedInt, Int, Half, Float, NormalizedUnsignedByte, NormalizedUnsignedShort }; - /** @copydoc AbstractTexture::Format */ + /** @copybrief AbstractTexture::Format */ enum class Format: GLenum { /** * Three-component RGB, float, each component 32bit, 96bit total. @@ -89,7 +98,7 @@ class BufferedTexture { /** @copydoc AbstractTexture::InternalFormat */ class MAGNUM_EXPORT InternalFormat { public: - /** @copydoc AbstractTexture::InternalFormat::InternalFormat(AbstractTexture::Components, AbstractTexture::ComponentType) */ + /** @copybrief AbstractTexture::InternalFormat::InternalFormat(AbstractTexture::Components, AbstractTexture::ComponentType) */ InternalFormat(Components components, ComponentType type); /** @copydoc AbstractTexture::InternalFormat::InternalFormat(AbstractTexture::Format) */ diff --git a/src/Renderbuffer.h b/src/Renderbuffer.h index 11e3c98c4..2c78954fc 100644 --- a/src/Renderbuffer.h +++ b/src/Renderbuffer.h @@ -41,7 +41,7 @@ class Renderbuffer { #ifndef MAGNUM_TARGET_GLES /** - * @copydoc AbstractTexture::Components + * @copybrief AbstractTexture::Components * * Like AbstractTexture::Components, without three-component RGB. * @requires_gl @@ -51,7 +51,7 @@ class Renderbuffer { }; /** - * @copydoc AbstractTexture::ComponentType + * @copybrief AbstractTexture::ComponentType * * Like AbstractTexture::ComponentType, without normalized signed * types. @@ -64,7 +64,7 @@ class Renderbuffer { #endif /** - * @copydoc AbstractTexture::Format + * @copybrief AbstractTexture::Format * * Like AbstractTexture::Format without * AbstractTexture::Format::RGB9Intensity5, three-component and