mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:00:28 +02:00
fix fade out not working in forward rendering
This commit is contained in:
parent
ac20b34af9
commit
6dc239d58d
2 changed files with 9 additions and 4 deletions
|
@ -145,10 +145,6 @@ void RenderDeferredTask::build(JobModel& task, const render::Varying& input, ren
|
|||
// Shadow Stage Frame
|
||||
const auto shadowFrame = shadowTaskOutputs[1];
|
||||
|
||||
if (depth == 0) {
|
||||
task.addJob<FadeEffect>("FadeEffect", opaques);
|
||||
}
|
||||
|
||||
const auto jitter = task.addJob<JitterSample>("JitterCam");
|
||||
|
||||
// GPU jobs: Start preparing the primary, deferred and lighting buffer
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
//
|
||||
#include "RenderViewTask.h"
|
||||
|
||||
#include "FadeEffect.h"
|
||||
#include "RenderShadowTask.h"
|
||||
#include "RenderCommonTask.h"
|
||||
#include "RenderDeferredTask.h"
|
||||
|
@ -40,6 +41,14 @@ void DeferredForwardSwitchJob::build(JobModel& task, const render::Varying& inpu
|
|||
void RenderViewTask::build(JobModel& task, const render::Varying& input, render::Varying& output, render::CullFunctor cullFunctor, uint8_t tagBits, uint8_t tagMask, size_t depth) {
|
||||
const auto items = task.addJob<RenderFetchCullSortTask>("FetchCullSort", cullFunctor, tagBits, tagMask);
|
||||
|
||||
if (depth == 0 && tagBits == render::ItemKey::TAG_BITS_0) {
|
||||
// TODO: This doesn't actually do any rendering, it simply processes the fade transactions. Even though forward rendering
|
||||
// doesn't support fading right now, we still need to do this once for both paths, otherwise we are left with orphaned objects
|
||||
// after they fade out. In the future, we should refactor this to happen elsewhere.
|
||||
const auto& opaques = items.get<RenderFetchCullSortTask::Output>().get0()[RenderFetchCullSortTask::OPAQUE_SHAPE];
|
||||
task.addJob<FadeEffect>("FadeEffect", opaques);
|
||||
}
|
||||
|
||||
// Issue the lighting model, aka the big global settings for the view
|
||||
const auto lightingModel = task.addJob<MakeLightingModel>("LightingModel");
|
||||
|
||||
|
|
Loading…
Reference in a new issue