Questions tagged «webgl»

1
如何通知WebStorm自动完成有关WebGLRenderingContext的信息
我正在从事一个涉及WebGL的项目,并使用WebStorm进行开发。 开发流程中的一个问题是WebStorm无法自动完成与WebGL相关的事情。特别是如果我将值注释为类型WebGLRenderingContext /** @type {!WebGLRenderingContext} */ var gl; WebStorm抱怨WebGLRenderingContext是一个未解决的变量。它还抱怨on上方法的用法gl,警告它找不到这些方法,因此它们可能不存在。 我当前的解决方法(除了关闭警告)是指定记录类型,如下所示: * @type {{ * texParameteri: function, * TEXTURE_WRAP_T: *, * ... * }} var gl; 但是,每次我要使用渲染上下文时,像这样亲自列出数十个标准化成员显然很傻。有没有更简单的方法?
9 webgl 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.