WebGLRenderingContext.isEnabled() - Web API 接口参考 编辑

WebGLRenderingContext.isEnabled()WebGL API 方法之一,用来检测给定的 WebGL 功能项在当前上下文是否可用。

默认的,除了 gl.DITHER,所有的功能项都是未启用的。

句法

void gl.isEnabled(cap);

参数

cap
GLenum 指定待检测的 WebGL 功能项。可能的值有:
ConstantDescription
gl.BLENDBlending of the computed fragment color values. See WebGLRenderingContext.blendFunc().
gl.CULL_FACECulling of polygons. See WebGLRenderingContext.cullFace().
gl.DEPTH_TESTDepth comparisons and updates to the depth buffer. See WebGLRenderingContext.depthFunc().
gl.DITHERDithering of color components before they get written to the color buffer.
gl.POLYGON_OFFSET_FILLAdding an offset to depth values of polygon's fragments. See WebGLRenderingContext.polygonOffset().
gl.SAMPLE_ALPHA_TO_COVERAGEComputation of a temporary coverage value determined by the alpha value.
gl.SAMPLE_COVERAGEANDing the fragment's coverage with the temporary coverage value. See WebGLRenderingContext.sampleCoverage().
gl.SCISSOR_TESTScissor test that discards fragments that are outside of the scissor rectangle. See WebGLRenderingContext.scissor().
gl.STENCIL_TESTStencil testing and updates to the stencil buffer. See WebGLRenderingContext.stencilFunc().
当使用 WebGL 2 context 的时候,下列附加的值也是可选用的。
ConstantDescription
gl.RASTERIZER_DISCARDPrimitives are discarded immediately before the rasterization stage, but after the optional transform feedback stage. gl.clear() commands are ignored.

返回值

GLboolean 指示能力项 cap 可用 (true),不可用 (false)。

示例

gl.isEnabled(gl.STENCIL_TEST);
// false

启用或停用给定的能力项,使用 WebGLRenderingContext.enable() 方法和 WebGLRenderingContext.disable() 方法:

gl.enable(gl.STENCIL_TEST);
gl.disable(gl.STENCIL_TEST);

规范

SpecificationStatusComment
WebGL 1.0
isEnabled
RecommendationInitial definition for WebGL.
OpenGL ES 2.0
glIsEnabled
StandardMan page of the (similar) OpenGL ES 2.0 API.
WebGL 2.0
isEnabled
Editor's DraftUpdated definition for WebGL 2.
OpenGL ES 3.0
glIsEnabled
StandardMan page of the (similar) OpenGL ES 3.0 API.

浏览器兼容性

We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!
FeatureChromeFirefox (Gecko)Internet ExplorerOperaSafari
Basic support94.0 (2.0)11125.1
FeatureAndroidChrome for AndroidFirefox Mobile (Gecko)IE MobileOpera MobileSafari Mobile
Basic support?25(Yes)?128.1

另见

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:133 次

字数:8011

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文