Browse Source

Doc++

pull/267/head
Vladimír Vondruš 8 years ago
parent
commit
fde07c6c58
  1. 12
      doc/types.dox
  2. 7
      src/Magnum/Trade/AnimationData.h

12
doc/types.dox

@ -42,14 +42,14 @@ consistency and reduce confusion (e.g. @ref std::int32_t, @cpp int @ce and
| Magnum type | Size | Equivalent GLSL type |
| ------------------ | -------------- | ----------------------- |
| @ref UnsignedByte | 8bit unsigned | |
| @ref Byte | 8bit signed | |
| @ref UnsignedShort | 16bit unsigned | |
| @ref Short | 16bit signed | |
| @ref UnsignedByte | 8bit unsigned | (*none*) |
| @ref Byte | 8bit signed | (*none*) |
| @ref UnsignedShort | 16bit unsigned | (*none*) |
| @ref Short | 16bit signed | (*none*) |
| @ref UnsignedInt | 32bit unsigned | @glsl uint @ce <b></b> |
| @ref Int | 32bit signed | @glsl int @ce <b></b> |
| @ref UnsignedLong | 64bit unsigned | |
| @ref Long | 64bit signed | |
| @ref UnsignedLong | 64bit unsigned | (*none*) |
| @ref Long | 64bit signed | (*none*) |
| @ref Half | 16bit | (*none*) |
| @ref Float | 32bit | @glsl float @ce <b></b> |
| @ref Double | 64bit | @glsl double @ce <b></b> |

7
src/Magnum/Trade/AnimationData.h

@ -452,10 +452,9 @@ class MAGNUM_TRADE_EXPORT AnimationData {
/** @relatesalso AnimationData
@brief Animation interpolator function for given interpolation behavior
To be used from importer plugins --- unlike @ref Animation::interpolatorFor()
guarantees that the returned function pointer is not instantiated inside plugin
binary to avoid dangling function pointers on plugin unload. See
@ref Animation::interpolatorFor() for more information.
To be used from importer plugins --- wrapper around @ref Animation::interpolatorFor(),
guaranteeing that the returned function pointer is not instantiated inside the
plugin binary to avoid dangling function pointers on plugin unload.
@see @ref AnimationData
@experimental
*/

Loading…
Cancel
Save