Chrome中的WebGL粉红色错误

时间:2016-01-27 15:38:20

标签: google-chrome webgl pixi.js

我正在尝试使用pixie.js编写简单的'游戏'from this side

我试图通过谷歌浏览器运行它,但我得到了奇怪的错误:

enter image description here

我能做些什么来解决它?

修改

index.js:225中的错误代表:

isWebGLSupported: function ()
{
    var contextOptions = { stencil: true };
    try
    {
        if (!window.WebGLRenderingContext)
        {
            return false;
        }

        var canvas = document.createElement('canvas'),
            gl = canvas.getContext('webgl', contextOptions) || canvas.getContext('experimental-webgl', contextOptions);

        return !!(gl && gl.getContextAttributes().stencil);
    }
    catch (e)
    {
        return false;
    }
},

1 个答案:

答案 0 :(得分:2)

这不是错误,正如另一位用户所说。它是默认情况下在加载了pixi.js库的任何页面上显示的欢迎消息。

如果您要隐藏该消息,可以将其添加到您的页面:

<script>
PIXI.utils._saidHello = true;
</script>