diff options
author | Geenz <geenz@geenzo.com> | 2013-04-09 11:46:52 -0400 |
---|---|---|
committer | Geenz <geenz@geenzo.com> | 2013-04-09 11:46:52 -0400 |
commit | 27fbf5efc9192813e5109443c60bfc26f99716ee (patch) | |
tree | b04206ff449518dfd2c9500db4eea27a9d29fa3f /indra/newview/pipeline.cpp | |
parent | c2df68743d53a9525f67cbec14637db9d56dd9fe (diff) |
Re-added RGB10_A2 normal buffer, this time encoded with a sphere map transform so we can store the environment intensity in the blue channel.
Diffstat (limited to 'indra/newview/pipeline.cpp')
-rw-r--r-- | indra/newview/pipeline.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index f664e06dd5..b9b4ec9198 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -399,7 +399,7 @@ void validate_framebuffer_object(); bool addDeferredAttachments(LLRenderTarget& target) { return target.addColorAttachment(GL_RGBA) && //specular - target.addColorAttachment(GL_RGBA); //normal+z + target.addColorAttachment(GL_RGB10_A2); //normal+z } LLPipeline::LLPipeline() : |