我使用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?