diff --git a/src/renderers/WebGLRenderer.js b/src/renderers/WebGLRenderer.js index 4b8b61b6181b222987dbe3abee138a1ad6fa8eb1..f538e7281256e94357d85b087426686a72570da3 100644 --- a/src/renderers/WebGLRenderer.js +++ b/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;