diff OrthancStone/Sources/Scene2D/OpenGLCompositor.cpp @ 1611:787db80a5a1b

new class MacroLayerRenderer
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 29 Oct 2020 18:02:03 +0100
parents 8563ea5d8ae4
children ad9b425f27ae
line wrap: on
line diff
--- a/OrthancStone/Sources/Scene2D/OpenGLCompositor.cpp	Thu Oct 29 17:13:13 2020 +0100
+++ b/OrthancStone/Sources/Scene2D/OpenGLCompositor.cpp	Thu Oct 29 18:02:03 2020 +0100
@@ -28,6 +28,7 @@
 #include "Internals/OpenGLInfoPanelRenderer.h"
 #include "Internals/OpenGLLookupTableTextureRenderer.h"
 #include "Internals/OpenGLTextRenderer.h"
+#include "Internals/MacroLayerRenderer.h"
 
 namespace OrthancStone
 {
@@ -118,6 +119,9 @@
         }
       }
 
+      case ISceneLayer::Type_Macro:
+        return new Internals::MacroLayerRenderer(*this, layer);
+
       default:
         return NULL;
       }