From 1008175a923da1e03ec554c127797c2732b08733 Mon Sep 17 00:00:00 2001 From: samcake Date: Mon, 11 Dec 2017 09:28:33 -0800 Subject: [PATCH] Removing commented code --- libraries/render-utils/src/HighlightEffect.cpp | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/libraries/render-utils/src/HighlightEffect.cpp b/libraries/render-utils/src/HighlightEffect.cpp index d1fcab67b6..fee1f4a568 100644 --- a/libraries/render-utils/src/HighlightEffect.cpp +++ b/libraries/render-utils/src/HighlightEffect.cpp @@ -454,23 +454,6 @@ void SelectionToHighlight::run(const render::RenderContextPointer& renderContext } } } - /* - for (auto i = 0; i < HighlightSharedParameters::MAX_PASS_COUNT; i++) { - std::ostringstream stream; - if (i > 0) { - stream << "highlightList" << i; - } else { - stream << "contextOverlayHighlightList"; - } - auto selectionName = stream.str(); - if (!scene->isSelectionEmpty(selectionName)) { - auto highlightId = highlightStage->getHighlightIdBySelection(selectionName); - if (!render::HighlightStage::isIndexInvalid(highlightId)) { - _sharedParameters->_highlightIds[outputs.size()] = highlightId; - outputs.emplace_back(selectionName); - } - } - }*/ } void ExtractSelectionName::run(const render::RenderContextPointer& renderContext, const Inputs& inputs, Outputs& outputs) {