From 42ed45635d378bf24a5bcd6911b9e155e07faaed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20Vondru=C5=A1?= Date: Mon, 14 May 2012 18:13:05 +0200 Subject: [PATCH] Camera: added dithering feature. --- src/Camera.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Camera.h b/src/Camera.h index 3ecf89cdc..ea369b00e 100644 --- a/src/Camera.h +++ b/src/Camera.h @@ -33,10 +33,15 @@ namespace Magnum { */ class MAGNUM_EXPORT Camera: public Object { public: - /** @brief Features */ + /** + * @brief Features + * + * If not specified otherwise, all features are disabled by default. + */ enum class Feature: GLenum { AlphaBlending = GL_BLEND, /**< Alpha blending */ DepthTest = GL_DEPTH_TEST, /**< Depth test */ + Dithering = GL_DITHER, /**< Dithering (enabled by default) */ FaceCulling = GL_CULL_FACE /**< Face culling */ };