mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0024867: Visualization - polygon offsets look broken
If specific layer setting is not enabled, default value extracted from current OpenGl state will be used. Default value fix. Updated test case bugs/vis/bug24867 Linux warning fixed.
This commit is contained in:
parent
372ceec4ce
commit
550f3b8b22
@ -43,7 +43,6 @@ namespace
|
|||||||
{{ 1.0F, 1.0F, 1.0F, 1.0F }} // material color
|
{{ 1.0F, 1.0F, 1.0F, 1.0F }} // material color
|
||||||
};
|
};
|
||||||
|
|
||||||
static TEL_POFFSET_PARAM THE_DEFAULT_POFFSET = { Aspect_POM_Fill, 1.0F, 0.0F };
|
|
||||||
static const TCollection_AsciiString THE_EMPTY_KEY;
|
static const TCollection_AsciiString THE_EMPTY_KEY;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
#include <InterfaceGraphic_telem.hxx>
|
#include <InterfaceGraphic_telem.hxx>
|
||||||
#include <Aspect_InteriorStyle.hxx>
|
#include <Aspect_InteriorStyle.hxx>
|
||||||
|
#include <Aspect_PolygonOffsetMode.hxx>
|
||||||
#include <TCollection_AsciiString.hxx>
|
#include <TCollection_AsciiString.hxx>
|
||||||
|
|
||||||
#include <Handle_Graphic3d_TextureParams.hxx>
|
#include <Handle_Graphic3d_TextureParams.hxx>
|
||||||
@ -36,6 +37,8 @@
|
|||||||
#define OPENGL_SPECULAR_MASK (1<<2)
|
#define OPENGL_SPECULAR_MASK (1<<2)
|
||||||
#define OPENGL_EMISSIVE_MASK (1<<3)
|
#define OPENGL_EMISSIVE_MASK (1<<3)
|
||||||
|
|
||||||
|
static const TEL_POFFSET_PARAM THE_DEFAULT_POFFSET = { Aspect_POM_Fill, 1.0F, 0.0F };
|
||||||
|
|
||||||
struct OPENGL_SURF_PROP
|
struct OPENGL_SURF_PROP
|
||||||
{
|
{
|
||||||
float amb, diff, spec, emsv;
|
float amb, diff, spec, emsv;
|
||||||
|
@ -14,7 +14,7 @@
|
|||||||
// commercial license or contractual agreement.
|
// commercial license or contractual agreement.
|
||||||
|
|
||||||
#include <OpenGl_Layer.hxx>
|
#include <OpenGl_Layer.hxx>
|
||||||
|
#include <OpenGl_Workspace.hxx>
|
||||||
#include <OpenGl_GlCore11.hxx>
|
#include <OpenGl_GlCore11.hxx>
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
@ -31,32 +31,39 @@ OpenGl_Layer::OpenGl_Layer (const Standard_Integer theNbPriorities)
|
|||||||
//function : Render
|
//function : Render
|
||||||
//purpose :
|
//purpose :
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
void OpenGl_Layer::Render (const Handle(OpenGl_Workspace) &AWorkspace, int theDefaultDepthFunc) const
|
void OpenGl_Layer::Render (const Handle(OpenGl_Workspace) &theWorkspace, const OpenGl_GlobalLayerSettings& theDefaultSettings) const
|
||||||
{
|
{
|
||||||
|
TEL_POFFSET_PARAM anAppliedOffsetParams = theWorkspace->AppliedPolygonOffset();
|
||||||
|
|
||||||
// separate depth buffers
|
// separate depth buffers
|
||||||
if (IsSettingEnabled (Graphic3d_ZLayerDepthClear))
|
if (IsSettingEnabled (Graphic3d_ZLayerDepthClear))
|
||||||
{
|
{
|
||||||
glClear (GL_DEPTH_BUFFER_BIT);
|
glClear (GL_DEPTH_BUFFER_BIT);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle depth test
|
// handle depth test
|
||||||
if (IsSettingEnabled (Graphic3d_ZLayerDepthTest))
|
if (IsSettingEnabled (Graphic3d_ZLayerDepthTest))
|
||||||
{
|
{
|
||||||
glDepthFunc (theDefaultDepthFunc);
|
// assuming depth test is enabled by default
|
||||||
|
glDepthFunc (theDefaultSettings.DepthFunc);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
glDepthFunc (GL_ALWAYS);
|
glDepthFunc (GL_ALWAYS);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle depth offset
|
// handle depth offset
|
||||||
if (IsSettingEnabled (Graphic3d_ZLayerDepthOffset))
|
if (IsSettingEnabled (Graphic3d_ZLayerDepthOffset))
|
||||||
{
|
{
|
||||||
glPolygonOffset (myLayerSettings.DepthOffsetFactor, myLayerSettings.DepthOffsetUnits);
|
theWorkspace->SetPolygonOffset (Aspect_POM_Fill,
|
||||||
|
myLayerSettings.DepthOffsetFactor,
|
||||||
|
myLayerSettings.DepthOffsetUnits);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
glPolygonOffset (0.0f, 0.0f);
|
theWorkspace->SetPolygonOffset (anAppliedOffsetParams.mode,
|
||||||
|
anAppliedOffsetParams.factor,
|
||||||
|
anAppliedOffsetParams.units);
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle depth write
|
// handle depth write
|
||||||
@ -70,5 +77,10 @@ void OpenGl_Layer::Render (const Handle(OpenGl_Workspace) &AWorkspace, int theDe
|
|||||||
}
|
}
|
||||||
|
|
||||||
// render priority list
|
// render priority list
|
||||||
myPriorityList.Render (AWorkspace);
|
myPriorityList.Render (theWorkspace);
|
||||||
|
|
||||||
|
// always restore polygon offset between layers rendering
|
||||||
|
theWorkspace->SetPolygonOffset (anAppliedOffsetParams.mode,
|
||||||
|
anAppliedOffsetParams.factor,
|
||||||
|
anAppliedOffsetParams.units);
|
||||||
}
|
}
|
||||||
|
@ -18,9 +18,16 @@
|
|||||||
|
|
||||||
#include <OpenGl_PriorityList.hxx>
|
#include <OpenGl_PriorityList.hxx>
|
||||||
#include <Graphic3d_ZLayerSettings.hxx>
|
#include <Graphic3d_ZLayerSettings.hxx>
|
||||||
|
#include <OpenGl_GlCore11.hxx>
|
||||||
|
|
||||||
class Handle(OpenGl_Workspace);
|
class Handle(OpenGl_Workspace);
|
||||||
|
|
||||||
|
struct OpenGl_GlobalLayerSettings
|
||||||
|
{
|
||||||
|
GLint DepthFunc;
|
||||||
|
GLboolean DepthMask;
|
||||||
|
};
|
||||||
|
|
||||||
class OpenGl_Layer
|
class OpenGl_Layer
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
@ -49,7 +56,7 @@ public:
|
|||||||
//! Returns const reference to associated priority list.
|
//! Returns const reference to associated priority list.
|
||||||
const OpenGl_PriorityList& PriorityList() const { return myPriorityList; }
|
const OpenGl_PriorityList& PriorityList() const { return myPriorityList; }
|
||||||
|
|
||||||
void Render (const Handle(OpenGl_Workspace) &AWorkspace, int theDefaultDepthFunc) const;
|
void Render (const Handle(OpenGl_Workspace) &AWorkspace, const OpenGl_GlobalLayerSettings& theDefaultSettings) const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
#include <OpenGl_LayerList.hxx>
|
#include <OpenGl_LayerList.hxx>
|
||||||
#include <OpenGl_Structure.hxx>
|
#include <OpenGl_Structure.hxx>
|
||||||
|
#include <OpenGl_Workspace.hxx>
|
||||||
|
|
||||||
#include <InterfaceGraphic_Graphic3d.hxx>
|
#include <InterfaceGraphic_Graphic3d.hxx>
|
||||||
#include <InterfaceGraphic.hxx>
|
#include <InterfaceGraphic.hxx>
|
||||||
@ -271,17 +272,22 @@ void OpenGl_LayerList::ChangeLayer (const OpenGl_Structure *theStructure,
|
|||||||
|
|
||||||
void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace) &theWorkspace) const
|
void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace) &theWorkspace) const
|
||||||
{
|
{
|
||||||
int aDefaultDepthFunc;
|
OpenGl_GlobalLayerSettings aDefaultSettings;
|
||||||
glGetIntegerv (GL_DEPTH_FUNC, &aDefaultDepthFunc);
|
|
||||||
|
glGetIntegerv (GL_DEPTH_FUNC, &aDefaultSettings.DepthFunc);
|
||||||
|
glGetBooleanv (GL_DEPTH_WRITEMASK, &aDefaultSettings.DepthMask);
|
||||||
|
|
||||||
OpenGl_SequenceOfLayers::Iterator anIts;
|
OpenGl_SequenceOfLayers::Iterator anIts;
|
||||||
for(anIts.Init (myLayers); anIts.More (); anIts.Next ())
|
for (anIts.Init (myLayers); anIts.More(); anIts.Next())
|
||||||
{
|
{
|
||||||
const OpenGl_Layer& aLayer = anIts.Value ();
|
const OpenGl_Layer& aLayer = anIts.Value ();
|
||||||
if (aLayer.PriorityList().NbStructures () > 0)
|
if (aLayer.PriorityList().NbStructures () > 0)
|
||||||
{
|
{
|
||||||
// render layer
|
// render layer
|
||||||
aLayer.Render (theWorkspace, aDefaultDepthFunc);
|
aLayer.Render (theWorkspace, aDefaultSettings);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
glDepthMask (aDefaultSettings.DepthMask);
|
||||||
|
glDepthFunc (aDefaultSettings.DepthFunc);
|
||||||
}
|
}
|
||||||
|
@ -175,7 +175,7 @@ OpenGl_Workspace::OpenGl_Workspace (const Handle(Aspect_DisplayConnection)& theD
|
|||||||
StructureMatrix_applied (&myDefaultMatrix),
|
StructureMatrix_applied (&myDefaultMatrix),
|
||||||
myCullingMode (TelCullUndefined),
|
myCullingMode (TelCullUndefined),
|
||||||
myModelViewMatrix (myDefaultMatrix),
|
myModelViewMatrix (myDefaultMatrix),
|
||||||
PolygonOffset_applied (NULL)
|
PolygonOffset_applied (THE_DEFAULT_POFFSET)
|
||||||
{
|
{
|
||||||
myGlContext->core11fwd->glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
myGlContext->core11fwd->glPixelStorei (GL_UNPACK_ALIGNMENT, 1);
|
||||||
|
|
||||||
@ -278,7 +278,7 @@ void OpenGl_Workspace::ResetAppliedAspect()
|
|||||||
AspectText_applied = NULL;
|
AspectText_applied = NULL;
|
||||||
TextParam_set = &myDefaultTextParam;
|
TextParam_set = &myDefaultTextParam;
|
||||||
TextParam_applied = NULL;
|
TextParam_applied = NULL;
|
||||||
PolygonOffset_applied = NULL;
|
PolygonOffset_applied = THE_DEFAULT_POFFSET;
|
||||||
myCullingMode = TelCullUndefined;
|
myCullingMode = TelCullUndefined;
|
||||||
|
|
||||||
AspectLine(Standard_True);
|
AspectLine(Standard_True);
|
||||||
|
@ -34,6 +34,7 @@
|
|||||||
#include <Aspect_CLayer2d.hxx>
|
#include <Aspect_CLayer2d.hxx>
|
||||||
#include <Aspect_Handle.hxx>
|
#include <Aspect_Handle.hxx>
|
||||||
#include <Aspect_PrintAlgo.hxx>
|
#include <Aspect_PrintAlgo.hxx>
|
||||||
|
#include <Aspect_PolygonOffsetMode.hxx>
|
||||||
|
|
||||||
#include <InterfaceGraphic_Graphic3d.hxx>
|
#include <InterfaceGraphic_Graphic3d.hxx>
|
||||||
#include <InterfaceGraphic_Visual3d.hxx>
|
#include <InterfaceGraphic_Visual3d.hxx>
|
||||||
@ -217,6 +218,12 @@ public:
|
|||||||
//! @return applied model structure matrix.
|
//! @return applied model structure matrix.
|
||||||
inline const OpenGl_Matrix* ModelMatrix() const { return StructureMatrix_applied; }
|
inline const OpenGl_Matrix* ModelMatrix() const { return StructureMatrix_applied; }
|
||||||
|
|
||||||
|
//! Sets and applies current polygon offset.
|
||||||
|
void SetPolygonOffset (int theMode, Standard_ShortReal theFactor, Standard_ShortReal theUnits);
|
||||||
|
|
||||||
|
//! Returns currently applied polygon offset params.
|
||||||
|
const TEL_POFFSET_PARAM& AppliedPolygonOffset() { return PolygonOffset_applied; }
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
//! Copy content of Back buffer to the Front buffer
|
//! Copy content of Back buffer to the Front buffer
|
||||||
@ -587,12 +594,11 @@ protected: //! @name fields related to status
|
|||||||
OpenGl_Material myMatTmp; //!< temporary variable
|
OpenGl_Material myMatTmp; //!< temporary variable
|
||||||
TelCullMode myCullingMode; //!< back face culling mode, applied from face aspect
|
TelCullMode myCullingMode; //!< back face culling mode, applied from face aspect
|
||||||
|
|
||||||
//! Model matrix with applied structure transformations
|
OpenGl_Matrix myModelViewMatrix; //!< Model matrix with applied structure transformations
|
||||||
OpenGl_Matrix myModelViewMatrix;
|
|
||||||
|
|
||||||
const TEL_POFFSET_PARAM* PolygonOffset_applied;
|
TEL_POFFSET_PARAM PolygonOffset_applied; //!< Currently applied polygon offset.
|
||||||
|
|
||||||
OpenGl_AspectFace myAspectFaceHl; // Hiddenline aspect
|
OpenGl_AspectFace myAspectFaceHl; //!< Hiddenline aspect
|
||||||
|
|
||||||
public: //! @name type definition
|
public: //! @name type definition
|
||||||
|
|
||||||
|
@ -44,24 +44,36 @@
|
|||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
static void TelUpdatePolygonOffsets( const TEL_POFFSET_PARAM *pdata )
|
static void TelUpdatePolygonOffsets (const TEL_POFFSET_PARAM& theOffsetData)
|
||||||
{
|
{
|
||||||
if ( ( pdata->mode & Aspect_POM_Fill ) == Aspect_POM_Fill )
|
if ((theOffsetData.mode & Aspect_POM_Fill) == Aspect_POM_Fill)
|
||||||
glEnable ( GL_POLYGON_OFFSET_FILL );
|
{
|
||||||
|
glEnable (GL_POLYGON_OFFSET_FILL);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
glDisable ( GL_POLYGON_OFFSET_FILL );
|
{
|
||||||
|
glDisable (GL_POLYGON_OFFSET_FILL);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ( pdata->mode & Aspect_POM_Line ) == Aspect_POM_Line )
|
if ((theOffsetData.mode & Aspect_POM_Line) == Aspect_POM_Line)
|
||||||
glEnable ( GL_POLYGON_OFFSET_LINE );
|
{
|
||||||
|
glEnable (GL_POLYGON_OFFSET_LINE);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
glDisable( GL_POLYGON_OFFSET_LINE );
|
{
|
||||||
|
glDisable (GL_POLYGON_OFFSET_LINE);
|
||||||
|
}
|
||||||
|
|
||||||
if ( ( pdata->mode & Aspect_POM_Point ) == Aspect_POM_Point )
|
if ((theOffsetData.mode & Aspect_POM_Point) == Aspect_POM_Point)
|
||||||
glEnable ( GL_POLYGON_OFFSET_POINT );
|
{
|
||||||
|
glEnable (GL_POLYGON_OFFSET_POINT);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
glDisable( GL_POLYGON_OFFSET_POINT );
|
{
|
||||||
|
glDisable (GL_POLYGON_OFFSET_POINT);
|
||||||
|
}
|
||||||
|
|
||||||
glPolygonOffset( pdata->factor, pdata->units );
|
glPolygonOffset (theOffsetData.factor, theOffsetData.units);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
@ -416,13 +428,13 @@ const OpenGl_AspectFace* OpenGl_Workspace::AspectFace (const Standard_Boolean th
|
|||||||
// Aspect_POM_None means: do not change current settings
|
// Aspect_POM_None means: do not change current settings
|
||||||
if ((AspectFace_set->PolygonOffset().mode & Aspect_POM_None) != Aspect_POM_None)
|
if ((AspectFace_set->PolygonOffset().mode & Aspect_POM_None) != Aspect_POM_None)
|
||||||
{
|
{
|
||||||
if (PolygonOffset_applied == NULL
|
if (PolygonOffset_applied.mode != AspectFace_set->PolygonOffset().mode
|
||||||
|| PolygonOffset_applied->mode != AspectFace_set->PolygonOffset().mode
|
|| PolygonOffset_applied.factor != AspectFace_set->PolygonOffset().factor
|
||||||
|| PolygonOffset_applied->factor != AspectFace_set->PolygonOffset().factor
|
|| PolygonOffset_applied.units != AspectFace_set->PolygonOffset().units)
|
||||||
|| PolygonOffset_applied->units != AspectFace_set->PolygonOffset().units)
|
|
||||||
{
|
{
|
||||||
PolygonOffset_applied = &AspectFace_set->PolygonOffset();
|
SetPolygonOffset (AspectFace_set->PolygonOffset().mode,
|
||||||
TelUpdatePolygonOffsets (PolygonOffset_applied);
|
AspectFace_set->PolygonOffset().factor,
|
||||||
|
AspectFace_set->PolygonOffset().units);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -449,6 +461,21 @@ const OpenGl_AspectFace* OpenGl_Workspace::AspectFace (const Standard_Boolean th
|
|||||||
return AspectFace_set;
|
return AspectFace_set;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//=======================================================================
|
||||||
|
//function : SetPolygonOffset
|
||||||
|
//purpose :
|
||||||
|
//=======================================================================
|
||||||
|
void OpenGl_Workspace::SetPolygonOffset (int theMode,
|
||||||
|
Standard_ShortReal theFactor,
|
||||||
|
Standard_ShortReal theUnits)
|
||||||
|
{
|
||||||
|
PolygonOffset_applied.mode = theMode;
|
||||||
|
PolygonOffset_applied.factor = theFactor;
|
||||||
|
PolygonOffset_applied.units = theUnits;
|
||||||
|
|
||||||
|
TelUpdatePolygonOffsets (PolygonOffset_applied);
|
||||||
|
}
|
||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
const OpenGl_AspectMarker* OpenGl_Workspace::AspectMarker (const Standard_Boolean theToApply)
|
const OpenGl_AspectMarker* OpenGl_Workspace::AspectMarker (const Standard_Boolean theToApply)
|
||||||
|
35
tests/bugs/vis/bug24867
Normal file
35
tests/bugs/vis/bug24867
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
puts "============"
|
||||||
|
puts "OCC24867"
|
||||||
|
puts "============"
|
||||||
|
puts ""
|
||||||
|
#############################################################
|
||||||
|
# [Regression] Visualization - polygon offsets look broken
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
restore [locate_data_file Top.brep] b
|
||||||
|
vinit View1
|
||||||
|
vdisplay b
|
||||||
|
vfit
|
||||||
|
vsetdispmode 1
|
||||||
|
vmoveto 200 200
|
||||||
|
|
||||||
|
set x1_coord 264
|
||||||
|
set y1_coord 288
|
||||||
|
set x2_coord 251
|
||||||
|
set y2_coord 271
|
||||||
|
|
||||||
|
checkcolor $x1_coord $y1_coord 0 1 1
|
||||||
|
if { $stat != 1 } {
|
||||||
|
puts "Error : Highlighting of dimension with flipping in local context failed."
|
||||||
|
}
|
||||||
|
|
||||||
|
checkcolor $x2_coord $y2_coord 0 1 1
|
||||||
|
if { $stat != 1 } {
|
||||||
|
puts "Error : Highlighting of dimension with flipping in local context failed."
|
||||||
|
}
|
||||||
|
|
||||||
|
vdump $::imagedir/${::casename}_highlighted.png
|
||||||
|
|
||||||
|
vselect 200 200
|
||||||
|
vdump $::imagedir/${::casename}_selected.png
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user