From 861e16e1f9944a6431b2c5cf5143462de0125935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Fri, 18 Jan 2013 17:25:50 +0100 Subject: [PATCH] Doc++, @todo+- --- src/IndexedMesh.h | 2 +- src/Magnum.h | 9 --------- src/Math/Vector.h | 2 ++ 3 files changed, 3 insertions(+), 10 deletions(-) diff --git a/src/IndexedMesh.h b/src/IndexedMesh.h index 9d956f99d..40d9d5f09 100644 --- a/src/IndexedMesh.h +++ b/src/IndexedMesh.h @@ -131,7 +131,7 @@ class MAGNUM_EXPORT IndexedMesh: public Mesh { * @brief Set index type * @return Pointer to self (for method chaining) * - * Default is @ref Type "IndexType::UnsignedInt". + * Default is @ref IndexType "IndexType::UnsignedInt". * @see setIndexBuffer(), setIndexCount(), MeshTools::compressIndices() */ inline IndexedMesh* setIndexType(IndexType type) { diff --git a/src/Magnum.h b/src/Magnum.h index a0e82909b..5880f51e9 100644 --- a/src/Magnum.h +++ b/src/Magnum.h @@ -38,15 +38,6 @@ #endif #endif -/** - * @todo Link to libGL / libGLES based on which windowcontext is used in app - * and whether GLES is enabled or not -- this allows us to use glx with - * ES on nvidia/intel. Using libGL and EGL on nvidia is whole another - * problem, though. How about windows? It won't allow unlinked DLLs, so - * probably always link Magnum itself to GL library there. How about unit - * tests not needing any of GL? -- different testing library? - */ - namespace Corrade { namespace Utility { class Debug; diff --git a/src/Math/Vector.h b/src/Math/Vector.h index 0bc51beac..6d25c787c 100644 --- a/src/Math/Vector.h +++ b/src/Math/Vector.h @@ -76,6 +76,8 @@ template class Vector: public RectangularMatrix<1, si * The interpolation is done as in following: @f[ * v_{LERP} = (1 - t) \boldsymbol v_A + t \boldsymbol v_B * @f] + * @todo http://fgiesen.wordpress.com/2012/08/15/linear-interpolation-past-present-and-future/ + * (when SIMD is in place) */ inline static Vector lerp(const Vector& a, const Vector& b, T t) { return (T(1) - t)*a + t*b;