ImGui::ProgressBar(m_raytracer->currentSamples()/float(m_raytracer->maxSamples()),ImVec2(-1,0),("Current: "+std::to_string(m_raytracer->currentSamples())+" of "+std::to_string(m_raytracer->maxSamples())).c_str());
ImGui::ProgressBar(m_raytracer->currentSample()/float(m_raytracer->getMaxSamples()),ImVec2(-1,0),("Current: "+std::to_string(m_raytracer->currentSample())+" of "+std::to_string(m_raytracer->getMaxSamples())).c_str());
ImGui::TextWrapped("The following threshold values will determine as of which bounce the Line Space should be used instead of the BVH. This can vary for every kind of effect.");