From b206e8ed328e63c0e3aef33e9aad61ce49496c8b Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Thu, 13 May 2021 15:02:58 +0300 Subject: [PATCH] Set debug names for dynamically created objects in desert pillars --- demos/desertpillars/source/desertpillars.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/demos/desertpillars/source/desertpillars.cpp b/demos/desertpillars/source/desertpillars.cpp index 6cde69b0..124df81c 100644 --- a/demos/desertpillars/source/desertpillars.cpp +++ b/demos/desertpillars/source/desertpillars.cpp @@ -36,31 +36,39 @@ DesertPillars::DesertPillars(int, char **): GL::Light &sun = resources.get("Sun.light"); sky = make_unique(content, sun); + sky->set_debug_name("Sky"); unsigned shadow_size = 8192; shadow_seq = make_unique(shadow_size, shadow_size); + shadow_seq->set_debug_name("Shadow sequence"); GL::Sequence::Step *step = &shadow_seq->add_step("shadow", content); step->set_depth_test(&GL::DepthTest::lequal()); shadow_map = make_unique(shadow_size, *sky, sun, *shadow_seq); + shadow_map->set_debug_name("Shadow map"); shadow_map->set_target(GL::Vector3(0.0f, 0.0f, 0.0f), 20.0f); GL::SequenceBuilder seq_bld(resources.get("Desert.seq")); seq_bld.set_renderable("content", *shadow_map); + seq_bld.set_debug_name("Main sequence"); sequence.reset(seq_bld.build(view)); unsigned env_size = 256; env_seq = make_unique(env_size, env_size); + env_seq->set_debug_name("Environment sequence"); step = &env_seq->add_step("", *shadow_map); step->set_lighting(&resources.get("Desert.lightn")); step->set_depth_test(&GL::DepthTest::lequal()); env_map = make_unique(256, GL::RGB16F, 7, sphere, *env_seq); + env_map->set_debug_name("Environment map"); sphere.set_matrix(GL::Matrix::translation(GL::Vector3(0.0f, 0.0f, 3.3f))); content.add(resources.get("Background.scene")); content.add(*env_map); + camera.set_debug_name("Main camera"); + view.set_content(sequence.get()); view.set_camera(&camera); -- 2.43.0