提交 714f3377 编写于 作者: M Mr.doob

VideoTexture: Set format to RGBFormat by default.

上级 330dcef9
......@@ -2,10 +2,13 @@
* @author mrdoob / http://mrdoob.com/
*/
import { RGBFormat } from '../constants.js';
import { Texture } from './Texture.js';
function VideoTexture( video, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {
if ( format === undefined ) format = RGBFormat;
Texture.call( this, video, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy );
this.generateMipmaps = false;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册