Browse Source

Added multisampling to Renderer::Feature enum.

pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
aa7bdc4b7a
  1. 8
      src/Renderer.h

8
src/Renderer.h

@ -92,6 +92,14 @@ class MAGNUM_EXPORT Renderer {
LogicOperation = GL_COLOR_LOGIC_OP, LogicOperation = GL_COLOR_LOGIC_OP,
#endif #endif
#ifndef MAGNUM_TARGET_GLES
/**
* Multisampling (enabled by default)
* @requires_gl Always enabled in OpenGL ES.
*/
Multisampling = GL_MULTISAMPLE,
#endif
#ifndef MAGNUM_TARGET_GLES #ifndef MAGNUM_TARGET_GLES
/** /**
* Depth clamping. If enabled, ignores near and far clipping plane. * Depth clamping. If enabled, ignores near and far clipping plane.

Loading…
Cancel
Save