没有WebGL的HTML5全景?

时间:2014-09-08 15:32:06

标签: html5 html5-canvas webgl

我使用html5(http://www.atoutreve.net/shared_resources/vt360/h360-ternay-place/_html5/)找到了这个全景图,但是当我禁用webGL时,它仍然有用吗?所以我查看了源代码并找到了这些行(文件load.js,第21行):

// Fallback for systems that don't support WebGL
if(typeof Float32Array != 'undefined') {
    glMatrixArrayType = Float32Array;
} else if(typeof WebGLFloatArray != 'undefined') {
    glMatrixArrayType = WebGLFloatArray; // This is officially deprecated and should dissapear in future revisions.
} else {
    glMatrixArrayType = Array;
}

这究竟是什么意思?如果不支持webgl,它是否仅使用HTML5画布,并且根本不使用webGL?

0 个答案:

没有答案