소스 검색

BufferGeometryLoader: Added comment.

Mr.doob 8 년 전
부모
커밋
12e5840cb3
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      src/loaders/BufferGeometryLoader.js

+ 1 - 0
src/loaders/BufferGeometryLoader.js

@@ -93,6 +93,7 @@ Object.assign( BufferGeometryLoader.prototype, {
 var TYPED_ARRAYS = {
 	Int8Array: Int8Array,
 	Uint8Array: Uint8Array,
+	// Workaround for IE11 pre KB2929437. See #11440
 	Uint8ClampedArray: typeof Uint8ClampedArray !== 'undefined' ? Uint8ClampedArray : Uint8Array,
 	Int16Array: Int16Array,
 	Uint16Array: Uint16Array,