瀏覽代碼

Replace THREE.RGBA with THREE.RGBAFormat

Jiulong Hu 6 年之前
父節點
當前提交
cfc397597b
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      examples/js/postprocessing/SSAOPass.js

+ 1 - 1
examples/js/postprocessing/SSAOPass.js

@@ -392,7 +392,7 @@ THREE.SSAOPass.prototype = Object.assign( Object.create( THREE.Pass.prototype ),
 
 		}
 
-		this.noiseTexture = new THREE.DataTexture( data, width, height, THREE.RGBA, THREE.FloatType );
+		this.noiseTexture = new THREE.DataTexture( data, width, height, THREE.RGBAFormat, THREE.FloatType );
 		this.noiseTexture.wrapS = THREE.RepeatWrapping;
 		this.noiseTexture.wrapT = THREE.RepeatWrapping;
 		this.noiseTexture.needsUpdate = true;