diff Applications/Samples/BasicPetCtFusionApplication.h @ 147:f48c5d422d45 wasm

removed meaningless ImageInterpolation_Linear value
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 23 Jan 2018 17:50:19 +0100
parents e2fe9352f240
children 5412adf19980
line wrap: on
line diff
--- a/Applications/Samples/BasicPetCtFusionApplication.h	Mon Jan 22 17:30:34 2018 +0100
+++ b/Applications/Samples/BasicPetCtFusionApplication.h	Tue Jan 23 17:50:19 2018 +0100
@@ -87,13 +87,13 @@
         {
           RenderStyle style = widget.GetLayerStyle(layer);
          
-          if (style.interpolation_ == ImageInterpolation_Linear)
+          if (style.interpolation_ == ImageInterpolation_Bilinear)
           {
             style.interpolation_ = ImageInterpolation_Nearest;
           }
           else
           {
-            style.interpolation_ = ImageInterpolation_Linear;
+            style.interpolation_ = ImageInterpolation_Bilinear;
           }
 
           widget.SetLayerStyle(layer, style);