summaryrefslogtreecommitdiff
path: root/c2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c2.cpp')
-rw-r--r--c2.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/c2.cpp b/c2.cpp
index 39a57c4..d7b475e 100644
--- a/c2.cpp
+++ b/c2.cpp
@@ -273,9 +273,13 @@ extern "C" int entrypoint() {
camera.asp = (float)bb.w / (float)bb.h;
scene.update(camera, dev);
ctx.debug_push("scene");
+ ctx.debug_push("depth prepass");
scene.render(dev, &frame_arena, depth_prepass, clamped_linear);
+ ctx.debug_pop();
+ ctx.debug_push("forward");
scene.render(dev, &frame_arena, pass2, clamped_linear);
ctx.debug_pop();
+ ctx.debug_pop();
ctx.debug_push("ui");
ui->render(&frame_arena, dev->get_backbuffer());