From 57f72802796749486783c8972ce9673b0c9e97c6 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 --- 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 182eb480..397a0f9c 100644 --- a/libautoscoper/src/gpu/cuda/RayCaster.cpp +++ b/libautoscoper/src/gpu/cuda/RayCaster.cpp @@ -61,6 +61,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;