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
Supports images with format @ref ImageFormat "ImageFormat::BGR",
@ref ImageFormat "ImageFormat::BGRA" or @ref ImageFormat "ImageFormat::Red" and
type @ref ImageType "ImageType::UnsignedByte".
Supports images with format @ref ImageFormat::BGR, @ref ImageFormat::BGRA or
@ref ImageFormat::Red and type @ref ImageType::UnsignedByte.
*/
class MAGNUM_TRADE_TGAIMAGECONVERTER_EXPORT TgaImageConverter: public AbstractImageConverter {
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.
The images are imported with @ref ImageType "ImageType::UnsignedByte" and
@ref ImageFormat "ImageFormat::BGR", @ref ImageFormat "ImageFormat::BGRA" or
@ref ImageFormat "ImageFormat::Red" respectively. Grayscale images require
extension @extension{ARB,texture_rg}.
In OpenGL ES BGR and BGRA images are converted to @ref ImageFormat "ImageFormat::RGB"
and @ref ImageFormat "ImageFormat::RGBA". In OpenGL ES 2.0, if @es_extension{EXT,texture_rg}
is not supported, grayscale images use @ref ImageFormat "ImageFormat::Luminance"
instead of @ref ImageFormat "ImageFormat::Red".
The images are imported with @ref ImageType::UnsignedByte and @ref ImageFormat::BGR,
@ref ImageFormat::BGRA or @ref ImageFormat::Red, respectively. Grayscale images
require extension @extension{ARB,texture_rg}.
In OpenGL ES BGR and BGRA images are converted to @ref ImageFormat::RGB
and @ref ImageFormat::RGBA. In OpenGL ES 2.0, if @es_extension{EXT,texture_rg}
is not supported, grayscale images use @ref ImageFormat::Luminance instead of
@ref ImageFormat::Red.
*/
class MAGNUM_TRADE_TGAIMPORTER_EXPORT TgaImporter: public AbstractImporter {
public:

5
src/Plugins/WavAudioImporter/WavImporter.h

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

Loading…
Cancel
Save