Browse Source

Doc++

pull/527/head
Vladimír Vondruš 5 years ago
parent
commit
99395eb69a
  1. 18
      doc/file-formats.dox
  2. 4
      src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h

18
doc/file-formats.dox

@ -30,15 +30,15 @@ namespace Magnum {
@tableofcontents @tableofcontents
@m_footernavigation @m_footernavigation
The @ref Trade::AnyImageImporter "AnyImageImporter", The @ref Audio::AnyImporter "AnyAudioImporter",
@ref Trade::AnySceneImporter "AnySceneImporter", @relativeref{Trade,AnyImageImporter}, @relativeref{Trade,AnySceneImporter},
@ref Trade::AnyImageConverter "AnyImageConverter", @relativeref{Trade,AnyImageConverter}, @relativeref{Trade,AnySceneConverter}
@ref Trade::AnySceneConverter "AnySceneConverter" and other `Any*` plugins can and @ref ShaderTools::AnyConverter "AnyShaderConverter" plugins can be used for
be used for generic handling of any of the recognized formats, they'll proxy generic handling of any of the recognized formats, they'll proxy the operation
the operation to a concrete plugin implementation. The following tables list to a concrete plugin implementation. The following tables list the most widely
the most widely used formats with alternative plugin implementations and known used formats with alternative plugin implementations and known caveats for
caveats for each. When one format is supported by more than one plugin, you each. When one format is supported by more than one plugin, you can use
can use @ref Corrade::PluginManager::AbstractManager::setPreferredPlugins() to @ref Corrade::PluginManager::AbstractManager::setPreferredPlugins() to
prioritize a particular plugin implementation. prioritize a particular plugin implementation.
See the @ref file-formats-legend section at the bottom of the page for a See the @ref file-formats-legend section at the bottom of the page for a

4
src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h

@ -56,8 +56,8 @@ namespace Magnum { namespace Trade {
Detects file type based on file extension, loads corresponding plugin and then Detects file type based on file extension, loads corresponding plugin and then
tries to open the file with it. Supported formats: tries to open the file with it. Supported formats:
- Basis Universal (`*.basis`), loaded @ref BasisImporter or any other plugin - Basis Universal (`*.basis` or data with corresponding signature), loaded
that provides it with @ref BasisImporter or any other plugin that provides it
- Windows Bitmap (`*.bmp`), loaded with any plugin that provides `BmpImporter` - Windows Bitmap (`*.bmp`), loaded with any plugin that provides `BmpImporter`
- DirectDraw Surface (`*.dds` or data with corresponding signature), loaded - DirectDraw Surface (`*.dds` or data with corresponding signature), loaded
with @ref DdsImporter or any other plugin that provides it with @ref DdsImporter or any other plugin that provides it

Loading…
Cancel
Save