aboutsummaryrefslogtreecommitdiff
path: root/src/client/render/interlaced.cpp
diff options
context:
space:
mode:
authorx2048 <codeforsmile@gmail.com>2023-03-19 21:31:15 +0100
committerGitHub <noreply@github.com>2023-03-19 21:31:15 +0100
commit6cd2eea48781dd7318b6ea78c5cdea4a3ee5db02 (patch)
treea5d0da127c7b4637adefde7a80e72580dff68484 /src/client/render/interlaced.cpp
parent09342c0811bb8d035e012a79dce714a6b63722e4 (diff)
downloadminetest-6cd2eea48781dd7318b6ea78c5cdea4a3ee5db02.tar.xz
Move drawing of wield tool into a dedicated step of the pipeline (#13338)
Diffstat (limited to 'src/client/render/interlaced.cpp')
-rw-r--r--src/client/render/interlaced.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/client/render/interlaced.cpp b/src/client/render/interlaced.cpp
index f4accd39b..20e918487 100644
--- a/src/client/render/interlaced.cpp
+++ b/src/client/render/interlaced.cpp
@@ -69,6 +69,7 @@ void populateInterlacedPipeline(RenderPipeline *pipeline, Client *client)
auto output = pipeline->createOwned<TextureBufferOutput>(buffer, right ? TEXTURE_RIGHT : TEXTURE_LEFT);
pipeline->addStep<SetRenderTargetStep>(step3D, output);
pipeline->addStep(step3D);
+ pipeline->addStep<DrawWield>();
pipeline->addStep<MapPostFxStep>();
}