From: ouv Date: Mon, 8 Jun 2009 13:50:09 +0000 (+0000) Subject: Fix of bug IPAL21161 - TC5.1.2: Value of "Clamp" parameter is not applied immediately X-Git-Tag: V5_1_2rc2~5 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=640538f319622f6f9b7b2b5a5f47db97877fd451;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 fd54f6e0..6662b6bd 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(); } //-----------------------------------------------------------------------------