Browse Source

Removed autolink-preventing % noise from plugins.

pull/77/head
Vladimír Vondruš 12 years ago
parent
commit
d812559605
  1. 6
      src/MagnumPlugins/MagnumFont/MagnumFont.h
  2. 8
      src/MagnumPlugins/MagnumFontConverter/MagnumFontConverter.h
  3. 6
      src/MagnumPlugins/ObjImporter/ObjImporter.h
  4. 6
      src/MagnumPlugins/TgaImageConverter/TgaImageConverter.h
  5. 10
      src/MagnumPlugins/TgaImporter/TgaHeader.h
  6. 6
      src/MagnumPlugins/TgaImporter/TgaImporter.h
  7. 6
      src/MagnumPlugins/WavAudioImporter/WavImporter.h

6
src/MagnumPlugins/MagnumFont/MagnumFont.h

@ -38,10 +38,10 @@ namespace Magnum { namespace Text {
@brief Simple bitmap font plugin @brief Simple bitmap font plugin
This plugin depends on @ref Trade::TgaImporter "TgaImporter" plugin and is This plugin depends on @ref Trade::TgaImporter "TgaImporter" plugin and is
built if `WITH_MAGNUMFONT` is enabled when building %Magnum. To use dynamic built if `WITH_MAGNUMFONT` is enabled when building Magnum. To use dynamic
plugin, you need to load `%MagnumFont` plugin from `MAGNUM_PLUGINS_FONT_DIR`. plugin, you need to load `MagnumFont` plugin from `MAGNUM_PLUGINS_FONT_DIR`.
To use static plugin or use this as a dependency of another plugin, you need to To use static plugin or use this as a dependency of another plugin, you need to
request `%MagnumFont` component of `%Magnum` package in CMake and link to request `MagnumFont` component of `Magnum` package in CMake and link to
`${MAGNUM_MAGNUMFONT_LIBRARIES}`. See @ref building, @ref cmake and `${MAGNUM_MAGNUMFONT_LIBRARIES}`. See @ref building, @ref cmake and
@ref plugins for more information. @ref plugins for more information.

8
src/MagnumPlugins/MagnumFontConverter/MagnumFontConverter.h

@ -42,11 +42,11 @@ Expects filename prefix, creates two files, `prefix.conf` and `prefix.tga`. See
This plugin is available only on desktop OpenGL, as it uses @ref Texture::image() This plugin is available only on desktop OpenGL, as it uses @ref Texture::image()
to read back the generated data. It depends on to read back the generated data. It depends on
@ref Trade::TgaImageConverter "TgaImageConverter" plugin and is built if @ref Trade::TgaImageConverter "TgaImageConverter" plugin and is built if
`WITH_MAGNUMFONTCONVERTER` is enabled when building %Magnum. To use dynamic `WITH_MAGNUMFONTCONVERTER` is enabled when building Magnum. To use dynamic
plugin, you need to load `%MagnumFontConverter` plugin from plugin, you need to load `MagnumFontConverter` plugin from
`MAGNUM_PLUGINS_FONTCONVERTER_DIR`. To use static plugin or use this as a `MAGNUM_PLUGINS_FONTCONVERTER_DIR`. To use static plugin or use this as a
dependency of another plugin, you need to request `%MagnumFontConverter` dependency of another plugin, you need to request `MagnumFontConverter`
component of `%Magnum` package in CMake and link to component of `Magnum` package in CMake and link to
`${MAGNUM_MAGNUMFONTCONVERTER_LIBRARIES}`. See @ref building, @ref cmake and `${MAGNUM_MAGNUMFONTCONVERTER_LIBRARIES}`. See @ref building, @ref cmake and
@ref plugins for more information. @ref plugins for more information.
*/ */

6
src/MagnumPlugins/ObjImporter/ObjImporter.h

@ -44,10 +44,10 @@ Supported features:
Polygons (quads etc.), automatic normal generation and material properties are Polygons (quads etc.), automatic normal generation and material properties are
currently not supported. currently not supported.
This plugin is built if `WITH_OBJIMPORTER` is enabled when building %Magnum. To This plugin is built if `WITH_OBJIMPORTER` is enabled when building Magnum. To
use dynamic plugin, you need to load `%ObjImporter` plugin from use dynamic plugin, you need to load `ObjImporter` plugin from
`MAGNUM_PLUGINS_IMPORTER_DIR`. To use static plugin or use this as a dependency `MAGNUM_PLUGINS_IMPORTER_DIR`. To use static plugin or use this as a dependency
of another plugin, you need to request `%ObjImporter` component of `%Magnum` of another plugin, you need to request `ObjImporter` component of `Magnum`
package in CMake and link to `${MAGNUM_OBJIMPORTER_LIBRARIES}`. See package in CMake and link to `${MAGNUM_OBJIMPORTER_LIBRARIES}`. See
@ref building, @ref cmake and @ref plugins for more information. @ref building, @ref cmake and @ref plugins for more information.
*/ */

6
src/MagnumPlugins/TgaImageConverter/TgaImageConverter.h

@ -49,10 +49,10 @@ Supports images with format @ref ColorFormat::BGR, @ref ColorFormat::BGRA or
@ref ColorFormat::Red and type @ref ColorType::UnsignedByte. @ref ColorFormat::Red and type @ref ColorType::UnsignedByte.
This plugin is built if `WITH_TGAIMAGECONVERTER` is enabled when building This plugin is built if `WITH_TGAIMAGECONVERTER` is enabled when building
%Magnum. To use dynamic plugin, you need to load `%TgaImageConverter` plugin Magnum. To use dynamic plugin, you need to load `TgaImageConverter` plugin
from `MAGNUM_PLUGINS_IMAGECONVERTER_DIR`. To use static plugin or use this as a from `MAGNUM_PLUGINS_IMAGECONVERTER_DIR`. To use static plugin or use this as a
dependency of another plugin, you need to request `%TgaImageConverter` dependency of another plugin, you need to request `TgaImageConverter`
component of `%Magnum` package in CMake and link to component of `Magnum` package in CMake and link to
`${MAGNUM_TGAIMAGECONVERTER_LIBRARIES}`. See @ref building, @ref cmake and `${MAGNUM_TGAIMAGECONVERTER_LIBRARIES}`. See @ref building, @ref cmake and
@ref plugins for more information. @ref plugins for more information.
*/ */

10
src/MagnumPlugins/TgaImporter/TgaHeader.h

@ -43,12 +43,12 @@ struct TgaHeader {
UnsignedShort colorMapStart; /**< @brief First color map entry */ UnsignedShort colorMapStart; /**< @brief First color map entry */
UnsignedShort colorMapLength; /**< @brief Number of colors */ UnsignedShort colorMapLength; /**< @brief Number of colors */
UnsignedByte colorMapBpp; /**< @brief Bits per palette entry */ UnsignedByte colorMapBpp; /**< @brief Bits per palette entry */
UnsignedShort beginX; /**< @brief %Image x origin */ UnsignedShort beginX; /**< @brief Image x origin */
UnsignedShort beginY; /**< @brief %Image y origin */ UnsignedShort beginY; /**< @brief Image y origin */
UnsignedShort width; /**< @brief %Image width */ UnsignedShort width; /**< @brief Image width */
UnsignedShort height; /**< @brief %Image height */ UnsignedShort height; /**< @brief Image height */
UnsignedByte bpp; /**< @brief Bits per pixel (8, 16, 24, 32) */ UnsignedByte bpp; /**< @brief Bits per pixel (8, 16, 24, 32) */
UnsignedByte descriptor; /**< @brief %Image descriptor */ UnsignedByte descriptor; /**< @brief Image descriptor */
}; };
#pragma pack() #pragma pack()

6
src/MagnumPlugins/TgaImporter/TgaImporter.h

@ -49,10 +49,10 @@ 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.
This plugin is built if `WITH_TGAIMPORTER` is enabled when building %Magnum. To This plugin is built if `WITH_TGAIMPORTER` is enabled when building Magnum. To
use dynamic plugin, you need to load `%TgaImporter` plugin from use dynamic plugin, you need to load `TgaImporter` plugin from
`MAGNUM_PLUGINS_IMPORTER_DIR`. To use static plugin or use this as a dependency `MAGNUM_PLUGINS_IMPORTER_DIR`. To use static plugin or use this as a dependency
of another plugin, you need to request `%TgaImporter` component of `%Magnum` of another plugin, you need to request `TgaImporter` component of `Magnum`
package in CMake and link to `${MAGNUM_TGAIMPORTER_LIBRARIES}`. See package in CMake and link to `${MAGNUM_TGAIMPORTER_LIBRARIES}`. See
@ref building, @ref cmake and @ref plugins for more information. @ref building, @ref cmake and @ref plugins for more information.

6
src/MagnumPlugins/WavAudioImporter/WavImporter.h

@ -43,10 +43,10 @@ imported with @ref Buffer::Format::Mono8, @ref Buffer::Format::Mono16,
@ref Buffer::Format::Stereo8 or @ref Buffer::Format::Stereo16, respectively. @ref Buffer::Format::Stereo8 or @ref Buffer::Format::Stereo16, respectively.
This plugin is built if `WITH_WAVAUDIOIMPORTER` is enabled when building This plugin is built if `WITH_WAVAUDIOIMPORTER` is enabled when building
%Magnum. To use dynamic plugin, you need to load `%WavAudioImporter` plugin Magnum. To use dynamic plugin, you need to load `WavAudioImporter` plugin
from `MAGNUM_PLUGINS_AUDIOIMPORTER_DIR`. To use static plugin or use this as a from `MAGNUM_PLUGINS_AUDIOIMPORTER_DIR`. To use static plugin or use this as a
dependency of another plugin, you need to request `%WavAudioImporter` component dependency of another plugin, you need to request `WavAudioImporter` component
of `%Magnum` package in CMake and link to `${MAGNUM_WAVAUDIOIMPORTER_LIBRARIES}`. of `Magnum` package in CMake and link to `${MAGNUM_WAVAUDIOIMPORTER_LIBRARIES}`.
See @ref building, @ref cmake and @ref plugins for more information. See @ref building, @ref cmake and @ref plugins for more information.
*/ */
class WavImporter: public AbstractImporter { class WavImporter: public AbstractImporter {

Loading…
Cancel
Save