From aa373c3e370a14a8ecf18858e94306f8f7fee8ce Mon Sep 17 00:00:00 2001 From: ouv Date: Mon, 8 Jun 2009 13:50:34 +0000 Subject: [PATCH] Fix of bug IPAL21161 - TC5.1.2: Value of "Clamp" parameter is not applied immediately --- src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx b/src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx index 3b829399..00e0f08b 100755 --- a/src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx +++ b/src/PIPELINE/VISU_OpenGLPointSpriteMapper.cxx @@ -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(); } //----------------------------------------------------------------------------- -- 2.39.2