Sfoglia il codice sorgente

Merge remote-tracking branch 'benaadams/patch-7' into dev

Mr.doob 12 anni fa
parent
commit
6956c66e9c
1 ha cambiato i file con 18 aggiunte e 0 eliminazioni
  1. 18 0
      src/renderers/WebGLRenderer.js

+ 18 - 0
src/renderers/WebGLRenderer.js

@@ -263,6 +263,24 @@ THREE.WebGLRenderer = function ( parameters ) {
 
 	};
 
+	this.supportsFloatTextures = function () {
+
+		return _glExtensionTextureFloat;
+
+	};
+	
+	this.supportsStandardDerivatives = function () {
+
+		return _glExtensionStandardDerivatives;
+
+	};
+	
+	this.supportsCompressedTextureS3TC = function () {
+
+		return _glExtensionCompressedTextureS3TC;
+
+	};
+	
 	this.getMaxAnisotropy  = function () {
 
 		return _maxAnisotropy;