]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix of bug IPAL21161 - TC5.1.2: Value of "Clamp" parameter is not applied immediately
authorouv <ouv@opencascade.com>
Mon, 8 Jun 2009 13:50:34 +0000 (13:50 +0000)
committerouv <ouv@opencascade.com>
Mon, 8 Jun 2009 13:50:34 +0000 (13:50 +0000)
src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx

index 3b829399fea4001d15fc7b12e94ba5654768ab70..00e0f08b6859602172e672049e37b793f35c07ca 100755 (executable)
@@ -371,6 +371,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteClamp( float theClamp )
     return;
 
   this->PointSpriteClamp = theClamp;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -380,6 +381,7 @@ void VISU_OpenGLPointSpriteMapper::SetAverageCellSize(float theSize)
     return;
 
   this->AverageCellSize = theSize;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -389,6 +391,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteSize( float theSize )
     return;
 
   this->PointSpriteSize = theSize;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -398,6 +401,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteMinSize( float theMinSize )
     return;
 
   this->PointSpriteMinSize = theMinSize;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -407,6 +411,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteMaxSize( float theMaxSize )
     return;
 
   this->PointSpriteMaxSize = theMaxSize;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -416,6 +421,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteMagnification( float theMagnifi
     return;
 
   this->PointSpriteMagnification = theMagnification;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------
@@ -425,6 +431,7 @@ void VISU_OpenGLPointSpriteMapper::SetPointSpriteAlphaThreshold( float theAlphaT
     return;
 
   this->PointSpriteAlphaThreshold = theAlphaThreshold;
+  this->Modified();  
 }
 
 //-----------------------------------------------------------------------------