我知道我们可以在创建上下文时为 WebGL 上下文指定属性:
var ctx = myCanvas.getContext(‘webgl’, attributes);
在创建 ctx 之后,我们可以调用一个方法来设置 ctx 的属性吗?例如,我们可以做一些类似于
var ctx = myCanvas.getContext(‘webgl’);
ctx.setAttributes(attributes);
我知道我们可以在创建上下文时为 WebGL 上下文指定属性:
var ctx = myCanvas.getContext(‘webgl’, attributes);
在创建 ctx 之后,我们可以调用一个方法来设置 ctx 的属性吗?例如,我们可以做一些类似于
var ctx = myCanvas.getContext(‘webgl’);
ctx.setAttributes(attributes);