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
This plugin depends on @ref Trade::TgaImporter "TgaImporter" plugin and is
built if `WITH_MAGNUMFONT` is enabled when building %Magnum. To use dynamic
plugin, you need to load `%MagnumFont` plugin from `MAGNUM_PLUGINS_FONT_DIR`.
built if `WITH_MAGNUMFONT` is enabled when building Magnum. To use dynamic
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
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
@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()
to read back the generated data. It depends on
@ref Trade::TgaImageConverter "TgaImageConverter" plugin and is built if
`WITH_MAGNUMFONTCONVERTER` is enabled when building %Magnum. To use dynamic
plugin, you need to load `%MagnumFontConverter` plugin from
`WITH_MAGNUMFONTCONVERTER` is enabled when building Magnum. To use dynamic
plugin, you need to load `MagnumFontConverter` plugin from
`MAGNUM_PLUGINS_FONTCONVERTER_DIR`. To use static plugin or use this as a
dependency of another plugin, you need to request `%MagnumFontConverter`
component of `%Magnum` package in CMake and link to
dependency of another plugin, you need to request `MagnumFontConverter`
component of `Magnum` package in CMake and link to
`${MAGNUM_MAGNUMFONTCONVERTER_LIBRARIES}`. See @ref building, @ref cmake and
@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
currently not supported.
This plugin is built if `WITH_OBJIMPORTER` is enabled when building %Magnum. To
use dynamic plugin, you need to load `%ObjImporter` plugin from
This plugin is built if `WITH_OBJIMPORTER` is enabled when building Magnum. To
use dynamic plugin, you need to load `ObjImporter` plugin from
`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
@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.
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
dependency of another plugin, you need to request `%TgaImageConverter`
component of `%Magnum` package in CMake and link to
dependency of another plugin, you need to request `TgaImageConverter`
component of `Magnum` package in CMake and link to
`${MAGNUM_TGAIMAGECONVERTER_LIBRARIES}`. See @ref building, @ref cmake and
@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 colorMapLength; /**< @brief Number of colors */
UnsignedByte colorMapBpp; /**< @brief Bits per palette entry */
UnsignedShort beginX; /**< @brief %Image x origin */
UnsignedShort beginY; /**< @brief %Image y origin */
UnsignedShort width; /**< @brief %Image width */
UnsignedShort height; /**< @brief %Image height */
UnsignedShort beginX; /**< @brief Image x origin */
UnsignedShort beginY; /**< @brief Image y origin */
UnsignedShort width; /**< @brief Image width */
UnsignedShort height; /**< @brief Image height */
UnsignedByte bpp; /**< @brief Bits per pixel (8, 16, 24, 32) */
UnsignedByte descriptor; /**< @brief %Image descriptor */
UnsignedByte descriptor; /**< @brief Image descriptor */
};
#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.
This plugin is built if `WITH_TGAIMPORTER` is enabled when building %Magnum. To
use dynamic plugin, you need to load `%TgaImporter` plugin from
This plugin is built if `WITH_TGAIMPORTER` is enabled when building Magnum. To
use dynamic plugin, you need to load `TgaImporter` plugin from
`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
@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.
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
dependency of another plugin, you need to request `%WavAudioImporter` component
of `%Magnum` package in CMake and link to `${MAGNUM_WAVAUDIOIMPORTER_LIBRARIES}`.
dependency of another plugin, you need to request `WavAudioImporter` component
of `Magnum` package in CMake and link to `${MAGNUM_WAVAUDIOIMPORTER_LIBRARIES}`.
See @ref building, @ref cmake and @ref plugins for more information.
*/
class WavImporter: public AbstractImporter {

Loading…
Cancel
Save