如何设置一个WebGL的上下文的属性已经被创建之后?(How do I set the attrib

2019-10-30 06:15发布

我知道,当我们创建上下文我们可以指定一个WebGL的背景属性:

var ctx = myCanvas.getContext(‘webgl’, attributes);

有没有办法,我们可以称之为CTX创建后设置CTX的属性的方法? 例如,我们可以做一些类似于

var ctx = myCanvas.getContext(‘webgl’);
ctx.setAttributes(attributes);

Answer 1:

这将需要能够改变上下文的属性。 这你不允许这样做。 他们固定在上下文创建时间。



文章来源: How do I set the attributes of a WebGL context after it has been created?
标签: webgl