diff options
author | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2023-03-28 09:46:09 -0700 |
---|---|---|
committer | Jonathan "Geenz" Goodman <geenz@geenzo.com> | 2023-03-28 09:46:09 -0700 |
commit | 320beaad855f253d36dbb8e1e9a891cc4525494e (patch) | |
tree | 6eca57bbae09437c3b02ee77975f9102fe33e5e7 /indra/newview/pipeline.cpp | |
parent | 08cd239c5f8f4b67b22372e7e608d9ec8e21a26c (diff) | |
parent | 9bf08f553aa59122a606487f1b28bd6083d9f966 (diff) |
Merge branch 'DRTVWR-559' of https://github.com/secondlife/viewer into DRTVWR-559
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 a53b3aac8e..7a5443825d 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -338,7 +338,7 @@ bool addDeferredAttachments(LLRenderTarget& target, bool for_impostor = false) bool valid = true && target.addColorAttachment(GL_RGBA) // frag-data[1] specular OR PBR ORM && target.addColorAttachment(GL_RGBA16F) // frag_data[2] normal+z+fogmask, See: class1\deferred\materialF.glsl & softenlight - && target.addColorAttachment(GL_RGB16); // frag_data[3] PBR emissive + && target.addColorAttachment(GL_RGB16F); // frag_data[3] PBR emissive return valid; } |