Browse Source

doc: mention new KTX and glTF plugins.

pull/537/head
Vladimír Vondruš 5 years ago
parent
commit
cad1f68eba
  1. 32
      doc/file-formats.dox
  2. 4
      src/MagnumPlugins/AnyImageConverter/AnyImageConverter.h
  3. 4
      src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h

32
doc/file-formats.dox

@ -198,6 +198,16 @@ Together with @ref file-formats-scene-importers "scene importers" derived from
</tr> </tr>
<tr><td colspan="6"></td></tr> <tr><td colspan="6"></td></tr>
<tr>
<th>KTX2 (`*.ktx2`)</th>
<td>`KtxImporter`</td>
<td>@ref Trade::KtxImporter "KtxImporter"</td>
<td class="m-text-center m-warning">@ref Trade-KtxImporter-behavior "some"</td>
<td class="m-text-center">@m_span{m-text m-dim} none @m_endspan </td>
<td class="m-text-center"></td>
</tr>
<tr><td colspan="6"></td></tr>
<tr> <tr>
<th rowspan="3">PNG<br/>(`*.png`)</th> <th rowspan="3">PNG<br/>(`*.png`)</th>
<td rowspan="3">`PngImporter`</td> <td rowspan="3">`PngImporter`</td>
@ -346,6 +356,16 @@ Derived from @ref Trade::AbstractImageConverter.
</tr> </tr>
<tr><td colspan="6"></td></tr> <tr><td colspan="6"></td></tr>
<tr>
<th>KTX2 (`*.ktx2`)</th>
<td>`KtxImageConverter`</td>
<td>@ref Trade::KtxImageConverter "KtxImageConverter"</td>
<td class="m-text-center m-warning">@ref Trade-KtxImageConverter-behavior "some"</td>
<td class="m-text-center">@m_span{m-text m-dim} none @m_endspan </td>
<td class="m-text-center"></td>
</tr>
<tr><td colspan="6"></td></tr>
<tr> <tr>
<th rowspan="2">PNG<br/>(`*.png`)</th> <th rowspan="2">PNG<br/>(`*.png`)</th>
<td rowspan="2">`PngImageConverter`</td> <td rowspan="2">`PngImageConverter`</td>
@ -382,7 +402,7 @@ Derived from @ref Trade::AbstractImageConverter.
@section file-formats-scene-importers Scene importers @section file-formats-scene-importers Scene importers
Together with @ref file-formats-image-importers "image-importers" derived from Together with @ref file-formats-image-importers "image importers" derived from
@ref Trade::AbstractImporter. @ref Trade::AbstractImporter.
@m_class{m-row m-container-inflate} @m_class{m-row m-container-inflate}
@ -455,8 +475,14 @@ Together with @ref file-formats-image-importers "image-importers" derived from
<tr><td colspan="6"></td></tr> <tr><td colspan="6"></td></tr>
<tr> <tr>
<th rowspan="2">glTF<br/>(`*.gltf`, `*.glb`)</th> <th rowspan="3">glTF<br/>(`*.gltf`, `*.glb`)</th>
<td rowspan="2">`GltfImporter`</td> <td rowspan="3">`GltfImporter`</td>
<td>@ref Trade::CgltfImporter "CgltfImporter"</td>
<td class="m-text-center m-success">@ref Trade-CgltfImporter-behavior "minor"</td>
<td class="m-text-center m-primary">bundled</td>
<td class="m-text-center m-success">MIT</td>
</tr>
<tr>
<td>@ref Trade::TinyGltfImporter "TinyGltfImporter"</td> <td>@ref Trade::TinyGltfImporter "TinyGltfImporter"</td>
<td class="m-text-center m-success">@ref Trade-TinyGltfImporter-behavior "minor"</td> <td class="m-text-center m-success">@ref Trade-TinyGltfImporter-behavior "minor"</td>
<td class="m-text-center m-primary">bundled</td> <td class="m-text-center m-primary">bundled</td>

4
src/MagnumPlugins/AnyImageConverter/AnyImageConverter.h

@ -66,8 +66,8 @@ tries to convert the file with it. Supported formats for uncompressed data:
`HdrImageConverter` `HdrImageConverter`
- JPEG (`*.jpg`, `*.jpe`, `*.jpeg`), converted with @ref JpegImageConverter - JPEG (`*.jpg`, `*.jpe`, `*.jpeg`), converted with @ref JpegImageConverter
or any other plugin that provides it or any other plugin that provides it
- KTX2 (`*.ktx2`), converted with any plugin that provides - KTX2 (`*.ktx2`), converted with @ref KtxImageConverter or any other plugin
`KtxImageConverter` that provides it
- Portable Network Graphics (`*.png`), converted with @ref PngImageConverter - Portable Network Graphics (`*.png`), converted with @ref PngImageConverter
or any other plugin that provides it or any other plugin that provides it
- Truevision TGA (`*.tga`, `*.vda`, `*.icb`, `*.vst`), converted with - Truevision TGA (`*.tga`, `*.vda`, `*.icb`, `*.vst`), converted with

4
src/MagnumPlugins/AnyImageImporter/AnyImageImporter.h

@ -74,8 +74,8 @@ tries to open the file with it. Supported formats:
loaded with @ref JpegImporter or any other plugin that provides it loaded with @ref JpegImporter or any other plugin that provides it
- JPEG 2000 (`*.jp2`), loaded with any plugin that provides - JPEG 2000 (`*.jp2`), loaded with any plugin that provides
`Jpeg2000Importer` `Jpeg2000Importer`
- KTX2 (`*.ktx2` or data with corresponding signature), loaded with any - KTX2 (`*.ktx2` or data with corresponding signature), loaded with
plugin that provides `KtxImporter` @ref KtxImporter or any other plugin that provides it
- Multiple-image Network Graphics (`*.mng`), loaded with any plugin that - Multiple-image Network Graphics (`*.mng`), loaded with any plugin that
provides `MngImporter` provides `MngImporter`
- Portable Bitmap (`*.pbm`), loaded with any plugin that provides `PbmImporter` - Portable Bitmap (`*.pbm`), loaded with any plugin that provides `PbmImporter`

Loading…
Cancel
Save