提交 3b5d1719 编写于 作者: A alteredq

WebGLDeferredRenderer: flipped light proxies faces orientation and depth test.

It makes lights work when the camera is inside the light volume and somehow it's also 10% faster.

You just need to make sure camera far plane is far enough to encompass the whole light proxy, otherwise there are not lit slices of proxy sphere.

(I don't really understand why flipping the depth test works, originally depth test was supposed to be just disabled)

See #2624
上级 a1c6656b
......@@ -253,7 +253,9 @@ THREE.WebGLDeferredRenderer = function ( parameters ) {
blending: THREE.AdditiveBlending,
depthWrite: false,
transparent: true
transparent: true,
side: THREE.BackSide
} );
......@@ -294,9 +296,7 @@ THREE.WebGLDeferredRenderer = function ( parameters ) {
blending: THREE.AdditiveBlending,
depthWrite: false,
transparent: true,
//side: THREE.BackSide
transparent: true
} );
......@@ -535,7 +535,7 @@ THREE.WebGLDeferredRenderer = function ( parameters ) {
// still no touching shared depth buffer
// (write light proxy color pixel if in front of scene pixel)
gl.depthFunc( gl.LEQUAL );
gl.depthFunc( gl.GEQUAL );
compLight.render();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册