From 19bec67afdd27331e4cd5871f5895692e398ce59 Mon Sep 17 00:00:00 2001 From: dubejf Date: Sat, 25 Jul 2015 10:49:53 -0400 Subject: [PATCH] Update WebGLRenderer doc Remove `.autoUpdateObjects` property and clean-up constructor parameter list. --- docs/api/renderers/WebGLRenderer.html | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/api/renderers/WebGLRenderer.html b/docs/api/renderers/WebGLRenderer.html index 2d5ff0a2b9..e6d9e8b5b4 100644 --- a/docs/api/renderers/WebGLRenderer.html +++ b/docs/api/renderers/WebGLRenderer.html @@ -1,7 +1,7 @@ - + @@ -23,13 +23,15 @@
canvas — A [page:Canvas] where the renderer draws its output.
- precision — shader precision. Can be *"highp"*, *"mediump"* or *"lowp"*.
+ context — The [page:RenderingContext] context to use.
+ precision — Shader precision. Can be *"highp"*, *"mediump"* or *"lowp"*. Defaults to *"highp"* if supported by the device.
alpha — [page:Boolean], default is *false*.
premultipliedAlpha — [page:Boolean], default is *true*.
antialias — [page:Boolean], default is *false*.
stencil — [page:Boolean], default is *true*.
preserveDrawingBuffer — [page:Boolean], default is *false*.
- maxLights — [page:Integer], default is *4*.
+ depth — [page:Boolean], default is *true*.
+ logarithmicDepthBuffer — [page:Boolean], default is *false*.

Properties

@@ -70,10 +72,6 @@
Note: Sorting is used to attempt to properly render objects that have some degree of transparency. By definition, sorting objects may not work in all cases. Depending on the needs of application, it may be neccessary to turn off sorting and use other methods to deal with transparency rendering e.g. manually determining the object rendering order.
-

[property:Boolean autoUpdateObjects]

- -
Defines whether the renderer should auto update objects. Default is true.
-

[property:Boolean gammaInput]

Default is false. If set, then it expects that all textures and colors are premultiplied gamma.
-- GitLab