Browse Source

Cleanup.

pull/87/merge
Vladimír Vondruš 11 years ago
parent
commit
0f0882bdac
  1. 6
      src/Magnum/Renderer.h

6
src/Magnum/Renderer.h

@ -308,7 +308,7 @@ class MAGNUM_EXPORT Renderer {
/** /**
* @brief Set clear color * @brief Set clear color
* *
* Initial value is {0.125f, 0.125f, 0.125f, 1.0f}. * Initial value is `{0.125f, 0.125f, 0.125f, 1.0f}`.
* @see @fn_gl{ClearColor} * @see @fn_gl{ClearColor}
*/ */
static void setClearColor(const Color4& color); static void setClearColor(const Color4& color);
@ -363,7 +363,7 @@ class MAGNUM_EXPORT Renderer {
/** /**
* @brief Set front-facing polygon winding * @brief Set front-facing polygon winding
* *
* Initial value is `FrontFace::CounterClockWise`. * Initial value is @ref FrontFace::CounterClockWise.
* @see @ref setFaceCullingMode(), @fn_gl{FrontFace} * @see @ref setFaceCullingMode(), @fn_gl{FrontFace}
*/ */
static void setFrontFace(FrontFace mode); static void setFrontFace(FrontFace mode);
@ -673,7 +673,7 @@ class MAGNUM_EXPORT Renderer {
/** /**
* @{ @name Blending * @{ @name Blending
* *
* You have to enable blending with setFeature() first. * You have to enable blending with @ref enable() first.
* @todo Blending for given draw buffer * @todo Blending for given draw buffer
*/ */

Loading…
Cancel
Save