Browse Source

Removed enum-referencing Doxygen workarounds.

pull/34/head
Vladimír Vondruš 13 years ago
parent
commit
840b8be08c
  1. 5
      src/Plugins/TgaImageConverter/TgaImageConverter.h
  2. 17
      src/Plugins/TgaImporter/TgaImporter.h
  3. 5
      src/Plugins/WavAudioImporter/WavImporter.h

5
src/Plugins/TgaImageConverter/TgaImageConverter.h

@ -44,9 +44,8 @@ namespace Magnum { namespace Trade {
/** /**
@brief TGA image converter @brief TGA image converter
Supports images with format @ref ImageFormat "ImageFormat::BGR", Supports images with format @ref ImageFormat::BGR, @ref ImageFormat::BGRA or
@ref ImageFormat "ImageFormat::BGRA" or @ref ImageFormat "ImageFormat::Red" and @ref ImageFormat::Red and type @ref ImageType::UnsignedByte.
type @ref ImageType "ImageType::UnsignedByte".
*/ */
class MAGNUM_TRADE_TGAIMAGECONVERTER_EXPORT TgaImageConverter: public AbstractImageConverter { class MAGNUM_TRADE_TGAIMAGECONVERTER_EXPORT TgaImageConverter: public AbstractImageConverter {
public: public:

17
src/Plugins/TgaImporter/TgaImporter.h

@ -47,15 +47,14 @@ namespace Magnum { namespace Trade {
Supports uncompressed BGR, BGRA or grayscale images with 8 bits per channel. Supports uncompressed BGR, BGRA or grayscale images with 8 bits per channel.
The images are imported with @ref ImageType "ImageType::UnsignedByte" and The images are imported with @ref ImageType::UnsignedByte and @ref ImageFormat::BGR,
@ref ImageFormat "ImageFormat::BGR", @ref ImageFormat "ImageFormat::BGRA" or @ref ImageFormat::BGRA or @ref ImageFormat::Red, respectively. Grayscale images
@ref ImageFormat "ImageFormat::Red" respectively. Grayscale images require require extension @extension{ARB,texture_rg}.
extension @extension{ARB,texture_rg}.
In OpenGL ES BGR and BGRA images are converted to @ref ImageFormat::RGB
In OpenGL ES BGR and BGRA images are converted to @ref ImageFormat "ImageFormat::RGB" and @ref ImageFormat::RGBA. In OpenGL ES 2.0, if @es_extension{EXT,texture_rg}
and @ref ImageFormat "ImageFormat::RGBA". In OpenGL ES 2.0, if @es_extension{EXT,texture_rg} is not supported, grayscale images use @ref ImageFormat::Luminance instead of
is not supported, grayscale images use @ref ImageFormat "ImageFormat::Luminance" @ref ImageFormat::Red.
instead of @ref ImageFormat "ImageFormat::Red".
*/ */
class MAGNUM_TRADE_TGAIMPORTER_EXPORT TgaImporter: public AbstractImporter { class MAGNUM_TRADE_TGAIMPORTER_EXPORT TgaImporter: public AbstractImporter {
public: public:

5
src/Plugins/WavAudioImporter/WavImporter.h

@ -38,9 +38,8 @@ namespace Magnum { namespace Audio {
@brief WAV importer @brief WAV importer
Supports mono and stereo PCM files with 8 or 16 bits per channel. The files are Supports mono and stereo PCM files with 8 or 16 bits per channel. The files are
imported with @ref Buffer::Format "Buffer::Format::Mono8", imported with @ref Buffer::Format::Mono8, @ref Buffer::Format::Mono16,
@ref Buffer::Format "Buffer::Format::Mono16", @ref Buffer::Format "Buffer::Format::Stereo8" @ref Buffer::Format::Stereo8 or @ref Buffer::Format::Stereo16, respectively.
or @ref Buffer::Format "Buffer::Format::Stereo16" respectively.
*/ */
class WavImporter: public AbstractImporter { class WavImporter: public AbstractImporter {
public: public:

Loading…
Cancel
Save