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 | | Magnum type | Size | Equivalent GLSL type |
| ------------------ | -------------- | ----------------------- | | ------------------ | -------------- | ----------------------- |
| @ref UnsignedByte | 8bit unsigned | | | @ref UnsignedByte | 8bit unsigned | (*none*) |
| @ref Byte | 8bit signed | | | @ref Byte | 8bit signed | (*none*) |
| @ref UnsignedShort | 16bit unsigned | | | @ref UnsignedShort | 16bit unsigned | (*none*) |
| @ref Short | 16bit signed | | | @ref Short | 16bit signed | (*none*) |
| @ref UnsignedInt | 32bit unsigned | @glsl uint @ce <b></b> | | @ref UnsignedInt | 32bit unsigned | @glsl uint @ce <b></b> |
| @ref Int | 32bit signed | @glsl int @ce <b></b> | | @ref Int | 32bit signed | @glsl int @ce <b></b> |
| @ref UnsignedLong | 64bit unsigned | | | @ref UnsignedLong | 64bit unsigned | (*none*) |
| @ref Long | 64bit signed | | | @ref Long | 64bit signed | (*none*) |
| @ref Half | 16bit | (*none*) | | @ref Half | 16bit | (*none*) |
| @ref Float | 32bit | @glsl float @ce <b></b> | | @ref Float | 32bit | @glsl float @ce <b></b> |
| @ref Double | 64bit | @glsl double @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 /** @relatesalso AnimationData
@brief Animation interpolator function for given interpolation behavior @brief Animation interpolator function for given interpolation behavior
To be used from importer plugins --- unlike @ref Animation::interpolatorFor() To be used from importer plugins --- wrapper around @ref Animation::interpolatorFor(),
guarantees that the returned function pointer is not instantiated inside plugin guaranteeing that the returned function pointer is not instantiated inside the
binary to avoid dangling function pointers on plugin unload. See plugin binary to avoid dangling function pointers on plugin unload.
@ref Animation::interpolatorFor() for more information.
@see @ref AnimationData @see @ref AnimationData
@experimental @experimental
*/ */

Loading…
Cancel
Save