From 0b83e4cc14ffb535292e6583082191b4495d7528 Mon Sep 17 00:00:00 2001 From: Anthony Lombardi Date: Fri, 5 Jan 2024 15:15:34 -0500 Subject: [PATCH] BUG: Ensure CUDA RayCaster is sets visible to true by default Bug was introduced in commit 73eb359dcd70878c4b4c28471fd2684c08bd3014 --- libautoscoper/src/gpu/cuda/RayCaster.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/libautoscoper/src/gpu/cuda/RayCaster.cpp b/libautoscoper/src/gpu/cuda/RayCaster.cpp index 92c267c5..2c103e7c 100644 --- a/libautoscoper/src/gpu/cuda/RayCaster.cpp +++ b/libautoscoper/src/gpu/cuda/RayCaster.cpp @@ -66,6 +66,7 @@ RayCaster::RayCaster() : volumeDescription_(0), std::stringstream name_stream; name_stream << "DrrRenderer" << (++num_ray_casters); name_ = name_stream.str(); + visible_ = true; viewport_[0] = -1.0f; viewport_[1] = -1.0f;