From: ouv Date: Mon, 8 Jun 2009 13:50:34 +0000 (+0000) Subject: Fix of bug IPAL21161 - TC5.1.2: Value of "Clamp" parameter is not applied immediately X-Git-Tag: V4_1_0_maintainance_20090609~1 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=aa373c3e370a14a8ecf18858e94306f8f7fee8ce;p=modules%2Fvisu.git Fix of bug IPAL21161 - TC5.1.2: Value of "Clamp" parameter is not applied immediately --- 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(); } //-----------------------------------------------------------------------------