webgl 中的 globalcompositeoperation 等价物
globalcompositeoperation equivalent in webgl
Canvas 2D 通过全局复合操作 属性 提供了以不同方式重叠图像的选项,如此处所示 http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_canvas_globalcompop
在使用texImage2D函数渲染图像时,webgl中是否有类似的选项?
是的,它叫做 blendFunc
和 blendEquation
。 Check this out to learn more.
Canvas 2D 通过全局复合操作 属性 提供了以不同方式重叠图像的选项,如此处所示 http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_canvas_globalcompop
在使用texImage2D函数渲染图像时,webgl中是否有类似的选项?
是的,它叫做 blendFunc
和 blendEquation
。 Check this out to learn more.