Преглед на файлове

add comment on how to reduce discretization affects.

Ben Houston преди 9 години
родител
ревизия
182a25faf7
променени са 1 файла, в които са добавени 5 реда и са изтрити 0 реда
  1. 5 0
      examples/js/postprocessing/MSAAPass.js

+ 5 - 0
examples/js/postprocessing/MSAAPass.js

@@ -5,6 +5,11 @@
  * lead to discretization effects.  For accurate sample accumulation use a floating
  * lead to discretization effects.  For accurate sample accumulation use a floating
  * point buffer.
  * point buffer.
  *
  *
+ * It is also possible to reduce the discretization effects by having more buffers
+ * and doing less combines.  So render to 4 buffers and combine them 4 times for
+ * 16 samples and you'll get 4x less discretization artifacts and then current
+ * approach.
+ *
  */
  */
 
 
 THREE.MSAAPass = function ( scene, camera, params ) {
 THREE.MSAAPass = function ( scene, camera, params ) {