glIsEnabled — test whether a capability is enabled
GLboolean glIsEnabled( | GLenum cap) ; |
glIsEnabled
returns GL_TRUE
if cap
is an enabled capability and returns GL_FALSE
otherwise. Initially all capabilities except GL_DITHER
are disabled; GL_DITHER
is initially enabled.
The following capabilities are accepted for cap
:
Constant | See |
---|---|
GL_BLEND | glBlendFunc |
GL_CULL_FACE | glCullFace |
GL_DEPTH_TEST | glDepthFunc, glDepthRangef |
GL_DITHER | glEnable |
GL_POLYGON_OFFSET_FILL | glPolygonOffset |
GL_SAMPLE_ALPHA_TO_COVERAGE | glSampleCoverage |
GL_SAMPLE_COVERAGE | glSampleCoverage |
GL_SCISSOR_TEST | glScissor |
GL_STENCIL_TEST | glStencilFunc, glStencilOp |
Copyright © 1991-2006 Silicon Graphics, Inc. This document is licensed under the SGI Free Software B License. For details, see https://web.archive.org/web/20171022161616/http://oss.sgi.com/projects/FreeB/.