The renderer will clear its output before rendering even if autoClear
is set to false due to the fact that the constructor property preserveDrawingBuffer
is set to false by default.
Both of these properties can control whether or not the renderer clears before rendering output. They both also conflict with each other (if one is false, the other must be true, or vice versa).
Is there a reason for having two properties of the renderer doing the same thing?