WebGLRenderingContext.scissor() - Web API 接口参考 编辑
WebGLRenderingContext.scissor()
方法指定了一个裁剪区域,用来将绘图区域限制在其限定的盒形区域内。
语法
void gl.scissor(x, y, width, height);
参数
x
GLint
,指定盒形裁剪区域左下角所在的横坐标,默认为 0。y
-
GLint
指定盒形裁剪区域左下角的纵坐标,默认为 0。 - width
Glsizei
,用来确定盒型裁剪区域宽度的非负数,默认为 canvas 的宽度。- height
Glsizei
,用以指定盒形裁剪区域高度的非负数,默认为canvas 的高度。
返回值
无。
抛错
宽或高为负值时,抛出 gl.INVALID_VALUE
错误。
示例
当裁剪区域可用的时候,只有处于此区域内的像素才能由绘图命令修改。
// turn on scissor test
gl.enable(gl.SCISSOR_TEST);
// set the scissor rectangle
gl.scissor(x, y, width, height);
// execute drawing commands in the scissor box (e.g. clear)
// turn off scissor test again
gl.disable(gl.SCISSOR_TEST);
通过查询 SCISSOR_BOX
常量来获取裁剪区域的维度信息,返回值是一个 Int32Array
对象。
gl.scissor(0, 0, 200, 200);
gl.getParameter(gl.SCISSOR_BOX);
// Int32Array[0, 0, 200, 200]
标准
Specification | Status | Comment |
---|---|---|
WebGL 1.0 scissor | Recommendation | Initial definition. |
OpenGL ES 2.0 glScissor | Standard | Man page of the OpenGL API. |
浏览器兼容性
BCD tables only load in the browser
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
参见
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论