mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0029300: Visualization, TKOpenGl - provide depth pre-pass option
OpenGl_LayerList::Render() now handles new option Graphic3d_RenderingParams::ToEnableDepthPrepass which prepends additional pass to rendering pipeline filling Depth Buffer in advance.
This commit is contained in:
parent
21b2385fcb
commit
f88457e638
@ -53,6 +53,7 @@ public:
|
|||||||
OitDepthFactor (0.0f),
|
OitDepthFactor (0.0f),
|
||||||
NbMsaaSamples (0),
|
NbMsaaSamples (0),
|
||||||
RenderResolutionScale (1.0f),
|
RenderResolutionScale (1.0f),
|
||||||
|
ToEnableDepthPrepass (Standard_False),
|
||||||
// ray tracing parameters
|
// ray tracing parameters
|
||||||
IsGlobalIlluminationEnabled (Standard_False),
|
IsGlobalIlluminationEnabled (Standard_False),
|
||||||
RaytracingDepth (THE_DEFAULT_DEPTH),
|
RaytracingDepth (THE_DEFAULT_DEPTH),
|
||||||
@ -105,6 +106,7 @@ public:
|
|||||||
Standard_Integer NbMsaaSamples; //!< number of MSAA samples (should be within 0..GL_MAX_SAMPLES, power-of-two number), 0 by default
|
Standard_Integer NbMsaaSamples; //!< number of MSAA samples (should be within 0..GL_MAX_SAMPLES, power-of-two number), 0 by default
|
||||||
Standard_ShortReal RenderResolutionScale; //!< rendering resolution scale factor, 1 by default;
|
Standard_ShortReal RenderResolutionScale; //!< rendering resolution scale factor, 1 by default;
|
||||||
//! incompatible with MSAA (e.g. NbMsaaSamples should be set to 0)
|
//! incompatible with MSAA (e.g. NbMsaaSamples should be set to 0)
|
||||||
|
Standard_Boolean ToEnableDepthPrepass; //!< enables/disables depth pre-pass, False by default
|
||||||
|
|
||||||
Standard_Boolean IsGlobalIlluminationEnabled; //!< enables/disables global illumination effects (path tracing)
|
Standard_Boolean IsGlobalIlluminationEnabled; //!< enables/disables global illumination effects (path tracing)
|
||||||
Standard_Integer SamplesPerPixel; //!< number of samples per pixel (SPP)
|
Standard_Integer SamplesPerPixel; //!< number of samples per pixel (SPP)
|
||||||
|
@ -39,7 +39,8 @@ struct Graphic3d_ZLayerSettings
|
|||||||
myUseEnvironmentTexture (Standard_True),
|
myUseEnvironmentTexture (Standard_True),
|
||||||
myToEnableDepthTest (Standard_True),
|
myToEnableDepthTest (Standard_True),
|
||||||
myToEnableDepthWrite(Standard_True),
|
myToEnableDepthWrite(Standard_True),
|
||||||
myToClearDepth (Standard_True) {}
|
myToClearDepth (Standard_True),
|
||||||
|
myToRenderInDepthPrepass (Standard_True) {}
|
||||||
|
|
||||||
//! Return user-provided name.
|
//! Return user-provided name.
|
||||||
const TCollection_AsciiString& Name() const { return myName; }
|
const TCollection_AsciiString& Name() const { return myName; }
|
||||||
@ -118,6 +119,12 @@ struct Graphic3d_ZLayerSettings
|
|||||||
//! Set if depth values should be cleared before drawing the layer.
|
//! Set if depth values should be cleared before drawing the layer.
|
||||||
void SetClearDepth (const Standard_Boolean theValue) { myToClearDepth = theValue; }
|
void SetClearDepth (const Standard_Boolean theValue) { myToClearDepth = theValue; }
|
||||||
|
|
||||||
|
//! Return TRUE if layer should be rendered within depth pre-pass; TRUE by default.
|
||||||
|
Standard_Boolean ToRenderInDepthPrepass() const { return myToRenderInDepthPrepass; }
|
||||||
|
|
||||||
|
//! Set if layer should be rendered within depth pre-pass.
|
||||||
|
void SetRenderInDepthPrepass (Standard_Boolean theToRender) { myToRenderInDepthPrepass = theToRender; }
|
||||||
|
|
||||||
//! Return glPolygonOffset() arguments.
|
//! Return glPolygonOffset() arguments.
|
||||||
const Graphic3d_PolygonOffset& PolygonOffset() const { return myPolygonOffset; }
|
const Graphic3d_PolygonOffset& PolygonOffset() const { return myPolygonOffset; }
|
||||||
|
|
||||||
@ -196,6 +203,7 @@ protected:
|
|||||||
Standard_Boolean myToEnableDepthTest; //!< option to enable depth test
|
Standard_Boolean myToEnableDepthTest; //!< option to enable depth test
|
||||||
Standard_Boolean myToEnableDepthWrite; //!< option to enable write depth values
|
Standard_Boolean myToEnableDepthWrite; //!< option to enable write depth values
|
||||||
Standard_Boolean myToClearDepth; //!< option to clear depth values before drawing the layer
|
Standard_Boolean myToClearDepth; //!< option to clear depth values before drawing the layer
|
||||||
|
Standard_Boolean myToRenderInDepthPrepass;//!< option to render layer within depth pre-pass
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -73,7 +73,7 @@ namespace
|
|||||||
aContext->ShaderManager()->UpdateClippingState();
|
aContext->ShaderManager()->UpdateClippingState();
|
||||||
|
|
||||||
glClear (GL_STENCIL_BUFFER_BIT);
|
glClear (GL_STENCIL_BUFFER_BIT);
|
||||||
glColorMask (GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
|
const bool aColorMaskBack = aContext->SetColorMask (false);
|
||||||
|
|
||||||
// override aspects, disable culling
|
// override aspects, disable culling
|
||||||
theWorkspace->SetAspectFace (&theWorkspace->NoneCulling());
|
theWorkspace->SetAspectFace (&theWorkspace->NoneCulling());
|
||||||
@ -116,7 +116,7 @@ namespace
|
|||||||
aContext->ShaderManager()->UpdateClippingState();
|
aContext->ShaderManager()->UpdateClippingState();
|
||||||
|
|
||||||
// render capping plane using the generated stencil mask
|
// render capping plane using the generated stencil mask
|
||||||
glColorMask (GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
aContext->SetColorMask (aColorMaskBack);
|
||||||
if (theWorkspace->UseDepthWrite())
|
if (theWorkspace->UseDepthWrite())
|
||||||
{
|
{
|
||||||
glDepthMask (GL_TRUE);
|
glDepthMask (GL_TRUE);
|
||||||
|
@ -188,6 +188,7 @@ OpenGl_Context::OpenGl_Context (const Handle(OpenGl_Caps)& theCaps)
|
|||||||
myReadBuffer (0),
|
myReadBuffer (0),
|
||||||
myDrawBuffers (1),
|
myDrawBuffers (1),
|
||||||
myDefaultVao (0),
|
myDefaultVao (0),
|
||||||
|
myColorMask (true),
|
||||||
myIsGlDebugCtx (Standard_False),
|
myIsGlDebugCtx (Standard_False),
|
||||||
myResolution (Graphic3d_RenderingParams::THE_DEFAULT_RESOLUTION),
|
myResolution (Graphic3d_RenderingParams::THE_DEFAULT_RESOLUTION),
|
||||||
myResolutionRatio (1.0f),
|
myResolutionRatio (1.0f),
|
||||||
@ -3678,3 +3679,17 @@ void OpenGl_Context::DisableFeatures() const
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : SetColorMask
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
bool OpenGl_Context::SetColorMask (bool theToWriteColor)
|
||||||
|
{
|
||||||
|
const GLboolean toWrite = theToWriteColor ? GL_TRUE : GL_FALSE;
|
||||||
|
glColorMask (toWrite, toWrite, toWrite, toWrite);
|
||||||
|
|
||||||
|
const bool anOldValue = myColorMask;
|
||||||
|
myColorMask = theToWriteColor;
|
||||||
|
return anOldValue;
|
||||||
|
}
|
||||||
|
@ -625,6 +625,12 @@ public: //! @name methods to alter or retrieve current state
|
|||||||
SetDrawBuffer (theBuffer);
|
SetDrawBuffer (theBuffer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//! Return cached flag indicating writing into color buffer is enabled or disabled (glColorMask).
|
||||||
|
bool ColorMask() const { return myColorMask; }
|
||||||
|
|
||||||
|
//! Enable/disable writing into color buffer (wrapper for glColorMask).
|
||||||
|
Standard_EXPORT bool SetColorMask (bool theToWriteColor);
|
||||||
|
|
||||||
//! Return back face culling state.
|
//! Return back face culling state.
|
||||||
bool ToCullBackFaces() const { return myToCullBackFaces; }
|
bool ToCullBackFaces() const { return myToCullBackFaces; }
|
||||||
|
|
||||||
@ -906,6 +912,7 @@ private: //! @name fields tracking current state
|
|||||||
Standard_Integer myReadBuffer; //!< current read buffer
|
Standard_Integer myReadBuffer; //!< current read buffer
|
||||||
OpenGl_DrawBuffers myDrawBuffers; //!< current draw buffers
|
OpenGl_DrawBuffers myDrawBuffers; //!< current draw buffers
|
||||||
unsigned int myDefaultVao; //!< default Vertex Array Object
|
unsigned int myDefaultVao; //!< default Vertex Array Object
|
||||||
|
Standard_Boolean myColorMask; //!< flag indicating writing into color buffer is enabled or disabled (glColorMask)
|
||||||
Standard_Boolean myIsGlDebugCtx; //!< debug context initialization state
|
Standard_Boolean myIsGlDebugCtx; //!< debug context initialization state
|
||||||
TCollection_AsciiString myVendor; //!< Graphics Driver's vendor
|
TCollection_AsciiString myVendor; //!< Graphics Driver's vendor
|
||||||
TColStd_PackedMapOfInteger myFilters[6]; //!< messages suppressing filter (for sources from GL_DEBUG_SOURCE_API_ARB to GL_DEBUG_SOURCE_OTHER_ARB)
|
TColStd_PackedMapOfInteger myFilters[6]; //!< messages suppressing filter (for sources from GL_DEBUG_SOURCE_API_ARB to GL_DEBUG_SOURCE_OTHER_ARB)
|
||||||
|
@ -26,6 +26,117 @@
|
|||||||
|
|
||||||
#include <Graphic3d_GraphicDriver.hxx>
|
#include <Graphic3d_GraphicDriver.hxx>
|
||||||
|
|
||||||
|
namespace
|
||||||
|
{
|
||||||
|
//! Auxiliary class extending sequence iterator with index.
|
||||||
|
class OpenGl_IndexedLayerIterator : public OpenGl_SequenceOfLayers::Iterator
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Main constructor.
|
||||||
|
OpenGl_IndexedLayerIterator (const OpenGl_SequenceOfLayers& theSeq)
|
||||||
|
: OpenGl_SequenceOfLayers::Iterator (theSeq),
|
||||||
|
myIndex (theSeq.Lower()) {}
|
||||||
|
|
||||||
|
//! Return index of current position.
|
||||||
|
Standard_Integer Index() const { return myIndex; }
|
||||||
|
|
||||||
|
//! Move to the next position.
|
||||||
|
void Next()
|
||||||
|
{
|
||||||
|
OpenGl_SequenceOfLayers::Iterator::Next();
|
||||||
|
++myIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
Standard_Integer myIndex;
|
||||||
|
};
|
||||||
|
|
||||||
|
//! Iterator through layers with filter.
|
||||||
|
class OpenGl_FilteredIndexedLayerIterator
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
//! Main constructor.
|
||||||
|
OpenGl_FilteredIndexedLayerIterator (const OpenGl_SequenceOfLayers& theSeq,
|
||||||
|
Standard_Integer theDefaultLayerIndex,
|
||||||
|
Standard_Boolean theToDrawImmediate,
|
||||||
|
OpenGl_LayerFilter theLayersToProcess)
|
||||||
|
: myIter (theSeq),
|
||||||
|
myDefaultLayerIndex (theDefaultLayerIndex),
|
||||||
|
myLayersToProcess (theLayersToProcess),
|
||||||
|
myToDrawImmediate (theToDrawImmediate)
|
||||||
|
{
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
|
||||||
|
//! Return true if iterator points to the valid value.
|
||||||
|
bool More() const { return myIter.More(); }
|
||||||
|
|
||||||
|
//! Return layer at current position.
|
||||||
|
const OpenGl_Layer& Value() const { return *myIter.Value(); }
|
||||||
|
|
||||||
|
//! Return index of current position.
|
||||||
|
Standard_Integer Index() const { return myIter.Index(); }
|
||||||
|
|
||||||
|
//! Go to the next item.
|
||||||
|
void Next()
|
||||||
|
{
|
||||||
|
myIter.Next();
|
||||||
|
next();
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
//! Look for the nearest item passing filters.
|
||||||
|
void next()
|
||||||
|
{
|
||||||
|
for (; myIter.More(); myIter.Next())
|
||||||
|
{
|
||||||
|
if (myIter.Value()->IsImmediate() != myToDrawImmediate)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
switch (myLayersToProcess)
|
||||||
|
{
|
||||||
|
case OpenGl_LF_All:
|
||||||
|
{
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case OpenGl_LF_Upper:
|
||||||
|
{
|
||||||
|
if (myIter.Index() <= myDefaultLayerIndex)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case OpenGl_LF_Bottom:
|
||||||
|
{
|
||||||
|
if (myIter.Index() >= myDefaultLayerIndex)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
case OpenGl_LF_Default:
|
||||||
|
{
|
||||||
|
if (myIter.Index() != myDefaultLayerIndex)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
private:
|
||||||
|
OpenGl_IndexedLayerIterator myIter;
|
||||||
|
Standard_Integer myDefaultLayerIndex;
|
||||||
|
OpenGl_LayerFilter myLayersToProcess;
|
||||||
|
Standard_Boolean myToDrawImmediate;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : OpenGl_LayerList
|
//function : OpenGl_LayerList
|
||||||
//purpose : Constructor
|
//purpose : Constructor
|
||||||
@ -223,11 +334,10 @@ void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// scan through layers and remove it
|
// scan through layers and remove it
|
||||||
Standard_Integer aSeqId = 1;
|
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next())
|
||||||
for (OpenGl_SequenceOfLayers::Iterator anIts (myLayers); anIts.More(); anIts.Next(), ++aSeqId)
|
|
||||||
{
|
{
|
||||||
OpenGl_Layer& aLayerEx = *anIts.ChangeValue();
|
OpenGl_Layer& aLayerEx = *anIts.ChangeValue();
|
||||||
if (aSeqPos == aSeqId)
|
if (aSeqPos == anIts.Index())
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -240,7 +350,7 @@ void OpenGl_LayerList::RemoveStructure (const OpenGl_Structure* theStructure)
|
|||||||
--myImmediateNbStructures;
|
--myImmediateNbStructures;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aSeqId == myDefaultLayerIndex
|
if (anIts.Index() == myDefaultLayerIndex
|
||||||
&& theStructure->IsRaytracable())
|
&& theStructure->IsRaytracable())
|
||||||
{
|
{
|
||||||
++myModifStateOfRaytraceable;
|
++myModifStateOfRaytraceable;
|
||||||
@ -299,10 +409,9 @@ void OpenGl_LayerList::ChangeLayer (const OpenGl_Structure* theStructure,
|
|||||||
}
|
}
|
||||||
|
|
||||||
// scan through layers and remove it
|
// scan through layers and remove it
|
||||||
Standard_Integer aSeqId = 1;
|
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next())
|
||||||
for (OpenGl_SequenceOfLayers::Iterator anIts (myLayers); anIts.More(); anIts.Next(), ++aSeqId)
|
|
||||||
{
|
{
|
||||||
if (aSeqPos == aSeqId)
|
if (aSeqPos == anIts.Index())
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -311,7 +420,7 @@ void OpenGl_LayerList::ChangeLayer (const OpenGl_Structure* theStructure,
|
|||||||
OpenGl_Layer& aLayerEx = *anIts.ChangeValue();
|
OpenGl_Layer& aLayerEx = *anIts.ChangeValue();
|
||||||
if (aLayerEx.Remove (theStructure, aPriority, Standard_True))
|
if (aLayerEx.Remove (theStructure, aPriority, Standard_True))
|
||||||
{
|
{
|
||||||
if (aSeqId == myDefaultLayerIndex
|
if (anIts.Index() == myDefaultLayerIndex
|
||||||
&& theStructure->IsRaytracable())
|
&& theStructure->IsRaytracable())
|
||||||
{
|
{
|
||||||
++myModifStateOfRaytraceable;
|
++myModifStateOfRaytraceable;
|
||||||
@ -356,10 +465,9 @@ void OpenGl_LayerList::ChangePriority (const OpenGl_Structure* theStructure,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Standard_Integer aSeqId = 1;
|
for (OpenGl_IndexedLayerIterator anIts (myLayers); anIts.More(); anIts.Next())
|
||||||
for (OpenGl_SequenceOfLayers::Iterator anIts (myLayers); anIts.More(); anIts.Next(), ++aSeqId)
|
|
||||||
{
|
{
|
||||||
if (aSeqPos == aSeqId)
|
if (aSeqPos == anIts.Index())
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
@ -412,11 +520,12 @@ void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|||||||
OpenGl_FrameBuffer* theOitAccumFbo) const
|
OpenGl_FrameBuffer* theOitAccumFbo) const
|
||||||
{
|
{
|
||||||
// Remember global settings for glDepth function and write mask.
|
// Remember global settings for glDepth function and write mask.
|
||||||
OpenGl_GlobalLayerSettings aDefaultSettings;
|
OpenGl_GlobalLayerSettings aPrevSettings;
|
||||||
|
|
||||||
const Handle(OpenGl_Context)& aCtx = theWorkspace->GetGlContext();
|
const Handle(OpenGl_Context)& aCtx = theWorkspace->GetGlContext();
|
||||||
aCtx->core11fwd->glGetIntegerv (GL_DEPTH_FUNC, &aDefaultSettings.DepthFunc);
|
aCtx->core11fwd->glGetIntegerv (GL_DEPTH_FUNC, &aPrevSettings.DepthFunc);
|
||||||
aCtx->core11fwd->glGetBooleanv (GL_DEPTH_WRITEMASK, &aDefaultSettings.DepthMask);
|
aCtx->core11fwd->glGetBooleanv (GL_DEPTH_WRITEMASK, &aPrevSettings.DepthMask);
|
||||||
|
OpenGl_GlobalLayerSettings aDefaultSettings = aPrevSettings;
|
||||||
|
|
||||||
// Two render filters are used to support transparency draw. Opaque filter accepts
|
// Two render filters are used to support transparency draw. Opaque filter accepts
|
||||||
// only non-transparent OpenGl elements of a layer and counts number of skipped
|
// only non-transparent OpenGl elements of a layer and counts number of skipped
|
||||||
@ -436,52 +545,78 @@ void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|||||||
myTransparentToProcess.Clear();
|
myTransparentToProcess.Clear();
|
||||||
|
|
||||||
OpenGl_LayerStack::iterator aStackIter (myTransparentToProcess.Origin());
|
OpenGl_LayerStack::iterator aStackIter (myTransparentToProcess.Origin());
|
||||||
Standard_Integer aSeqId = myLayers.Lower();
|
Standard_Integer aClearDepthLayerPrev = -1, aClearDepthLayer = -1;
|
||||||
bool toClearDepth = false;
|
const bool toPerformDepthPrepass = theWorkspace->View()->RenderingParams().ToEnableDepthPrepass
|
||||||
for (OpenGl_SequenceOfLayers::Iterator aLayerIter (myLayers); aLayerIter.More(); aLayerIter.Next(), ++aSeqId)
|
&& aPrevSettings.DepthMask == GL_TRUE;
|
||||||
|
for (OpenGl_FilteredIndexedLayerIterator aLayerIterStart (myLayers, myDefaultLayerIndex, theToDrawImmediate, theLayersToProcess); aLayerIterStart.More();)
|
||||||
{
|
{
|
||||||
if (theLayersToProcess == OpenGl_LF_Bottom)
|
bool hasSkippedDepthLayers = false;
|
||||||
|
for (int aPassIter = toPerformDepthPrepass ? 0 : 2; aPassIter < 3; ++aPassIter)
|
||||||
{
|
{
|
||||||
if (aSeqId >= myDefaultLayerIndex) continue;
|
if (aPassIter == 0)
|
||||||
|
{
|
||||||
|
aCtx->SetColorMask (false);
|
||||||
|
aDefaultSettings.DepthFunc = aPrevSettings.DepthFunc;
|
||||||
|
aDefaultSettings.DepthMask = GL_TRUE;
|
||||||
}
|
}
|
||||||
else if (theLayersToProcess == OpenGl_LF_Upper)
|
else if (aPassIter == 1)
|
||||||
{
|
{
|
||||||
if (aSeqId <= myDefaultLayerIndex) continue;
|
if (!hasSkippedDepthLayers)
|
||||||
}
|
|
||||||
else if (theLayersToProcess == OpenGl_LF_Default)
|
|
||||||
{
|
|
||||||
if (aSeqId != myDefaultLayerIndex) continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
const OpenGl_Layer& aLayer = *aLayerIter.Value();
|
|
||||||
if (aLayer.IsImmediate() != theToDrawImmediate)
|
|
||||||
{
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
else if (aLayer.NbStructures() < 1)
|
aCtx->SetColorMask (true);
|
||||||
|
aDefaultSettings = aPrevSettings;
|
||||||
|
}
|
||||||
|
else if (aPassIter == 2)
|
||||||
|
{
|
||||||
|
aCtx->SetColorMask (true);
|
||||||
|
if (toPerformDepthPrepass)
|
||||||
|
{
|
||||||
|
aDefaultSettings.DepthFunc = GL_EQUAL;
|
||||||
|
aDefaultSettings.DepthMask = GL_FALSE;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
OpenGl_FilteredIndexedLayerIterator aLayerIter (aLayerIterStart);
|
||||||
|
for (; aLayerIter.More(); aLayerIter.Next())
|
||||||
|
{
|
||||||
|
const OpenGl_Layer& aLayer = aLayerIter.Value();
|
||||||
|
|
||||||
|
// make sure to clear depth of previous layers even if layer has no structures
|
||||||
|
if (aLayer.LayerSettings().ToClearDepth())
|
||||||
|
{
|
||||||
|
aClearDepthLayer = aLayerIter.Index();
|
||||||
|
}
|
||||||
|
if (aLayer.NbStructures() < 1)
|
||||||
{
|
{
|
||||||
// Make sure to clear depth of previous layers even if layer has no structures.
|
|
||||||
toClearDepth = toClearDepth || aLayer.LayerSettings().ToClearDepth();
|
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
else if (aClearDepthLayer > aClearDepthLayerPrev)
|
||||||
// At this point the depth buffer may be set to clear by
|
|
||||||
// previous configuration of layers or configuration of the
|
|
||||||
// current layer. Additional rendering pass to handle transparent
|
|
||||||
// elements of recently drawn layers require use of current depth
|
|
||||||
// buffer so we put remaining layers for processing as one bunch before
|
|
||||||
// erasing the depth buffer.
|
|
||||||
if (toClearDepth
|
|
||||||
|| aLayer.LayerSettings().ToClearDepth())
|
|
||||||
{
|
{
|
||||||
if (!myTransparentToProcess.IsEmpty())
|
// At this point the depth buffer may be set to clear by previous configuration of layers or configuration of the current layer.
|
||||||
|
// Additional rendering pass to handle transparent elements of recently drawn layers require use of current depth
|
||||||
|
// buffer so we put remaining layers for processing as one bunch before erasing the depth buffer.
|
||||||
|
if (aPassIter == 2)
|
||||||
{
|
{
|
||||||
renderTransparent (theWorkspace, aStackIter, aDefaultSettings, theReadDrawFbo, theOitAccumFbo);
|
aLayerIterStart = aLayerIter;
|
||||||
}
|
}
|
||||||
|
else
|
||||||
toClearDepth = false;
|
{
|
||||||
glDepthMask (GL_TRUE);
|
aClearDepthLayer = -1;
|
||||||
glClear (GL_DEPTH_BUFFER_BIT);
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
else if (aPassIter == 0
|
||||||
|
&& !aLayer.LayerSettings().ToRenderInDepthPrepass())
|
||||||
|
{
|
||||||
|
hasSkippedDepthLayers = true;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
else if (aPassIter == 1
|
||||||
|
&& aLayer.LayerSettings().ToRenderInDepthPrepass())
|
||||||
|
{
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Render opaque OpenGl elements of a layer and count the number of skipped.
|
// Render opaque OpenGl elements of a layer and count the number of skipped.
|
||||||
@ -491,26 +626,33 @@ void OpenGl_LayerList::Render (const Handle(OpenGl_Workspace)& theWorkspace,
|
|||||||
|
|
||||||
aLayer.Render (theWorkspace, aDefaultSettings);
|
aLayer.Render (theWorkspace, aDefaultSettings);
|
||||||
|
|
||||||
if (myRenderOpaqueFilter->NbSkipped() > 0)
|
if (aPassIter != 0
|
||||||
|
&& myRenderOpaqueFilter->NbSkipped() > 0)
|
||||||
{
|
{
|
||||||
myTransparentToProcess.Push (&aLayer);
|
myTransparentToProcess.Push (&aLayer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (aPassIter == 2
|
||||||
// Before finishing process the remaining collected layers with transparency.
|
&& !aLayerIter.More())
|
||||||
if (!myTransparentToProcess.IsEmpty())
|
|
||||||
{
|
{
|
||||||
renderTransparent (theWorkspace, aStackIter, aDefaultSettings, theReadDrawFbo, theOitAccumFbo);
|
aLayerIterStart = aLayerIter;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (toClearDepth)
|
if (!myTransparentToProcess.IsEmpty())
|
||||||
{
|
{
|
||||||
|
renderTransparent (theWorkspace, aStackIter, aPrevSettings, theReadDrawFbo, theOitAccumFbo);
|
||||||
|
}
|
||||||
|
if (aClearDepthLayer > aClearDepthLayerPrev)
|
||||||
|
{
|
||||||
|
aClearDepthLayerPrev = aClearDepthLayer;
|
||||||
glDepthMask (GL_TRUE);
|
glDepthMask (GL_TRUE);
|
||||||
glClear (GL_DEPTH_BUFFER_BIT);
|
glClear (GL_DEPTH_BUFFER_BIT);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
aCtx->core11fwd->glDepthMask (aDefaultSettings.DepthMask);
|
aCtx->core11fwd->glDepthMask (aPrevSettings.DepthMask);
|
||||||
aCtx->core11fwd->glDepthFunc (aDefaultSettings.DepthFunc);
|
aCtx->core11fwd->glDepthFunc (aPrevSettings.DepthFunc);
|
||||||
|
|
||||||
theWorkspace->SetRenderFilter (aPrevFilter);
|
theWorkspace->SetRenderFilter (aPrevFilter);
|
||||||
}
|
}
|
||||||
|
@ -736,7 +736,8 @@ void OpenGl_PrimitiveArray::Render (const Handle(OpenGl_Workspace)& theWorkspace
|
|||||||
&& myVboAttribs->HasColorAttribute();
|
&& myVboAttribs->HasColorAttribute();
|
||||||
const Standard_Boolean isLightOn = !anAspectFace->IsNoLighting()
|
const Standard_Boolean isLightOn = !anAspectFace->IsNoLighting()
|
||||||
&& !myVboAttribs.IsNull()
|
&& !myVboAttribs.IsNull()
|
||||||
&& myVboAttribs->HasNormalAttribute();
|
&& myVboAttribs->HasNormalAttribute()
|
||||||
|
&& aCtx->ColorMask();
|
||||||
|
|
||||||
// Temporarily disable environment mapping
|
// Temporarily disable environment mapping
|
||||||
Handle(OpenGl_TextureSet) aTextureBack;
|
Handle(OpenGl_TextureSet) aTextureBack;
|
||||||
|
@ -958,7 +958,7 @@ void OpenGl_Text::render (const Handle(OpenGl_Context)& theCtx,
|
|||||||
glDisable (GL_ALPHA_TEST);
|
glDisable (GL_ALPHA_TEST);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
glColorMask (GL_FALSE, GL_FALSE, GL_FALSE, GL_FALSE);
|
const bool aColorMaskBack = theCtx->SetColorMask (false);
|
||||||
|
|
||||||
glClear (GL_STENCIL_BUFFER_BIT);
|
glClear (GL_STENCIL_BUFFER_BIT);
|
||||||
glEnable (GL_STENCIL_TEST);
|
glEnable (GL_STENCIL_TEST);
|
||||||
@ -969,7 +969,7 @@ void OpenGl_Text::render (const Handle(OpenGl_Context)& theCtx,
|
|||||||
|
|
||||||
glStencilFunc (GL_ALWAYS, 0, 0xFF);
|
glStencilFunc (GL_ALWAYS, 0, 0xFF);
|
||||||
|
|
||||||
glColorMask (GL_TRUE, GL_TRUE, GL_TRUE, GL_TRUE);
|
theCtx->SetColorMask (aColorMaskBack);
|
||||||
}
|
}
|
||||||
|
|
||||||
// reset OpenGL state
|
// reset OpenGL state
|
||||||
|
@ -9843,6 +9843,7 @@ static Standard_Integer VRenderParams (Draw_Interpretor& theDI,
|
|||||||
case V3d_GOURAUD: theDI << "gouraud"; break;
|
case V3d_GOURAUD: theDI << "gouraud"; break;
|
||||||
case V3d_PHONG: theDI << "phong"; break;
|
case V3d_PHONG: theDI << "phong"; break;
|
||||||
}
|
}
|
||||||
|
theDI << "depth pre-pass: " << (aParams.ToEnableDepthPrepass ? "on" : "off") << "\n";
|
||||||
theDI << "\n";
|
theDI << "\n";
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -9974,6 +9975,20 @@ static Standard_Integer VRenderParams (Draw_Interpretor& theDI,
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else if (aFlag == "-depthprepass")
|
||||||
|
{
|
||||||
|
if (toPrint)
|
||||||
|
{
|
||||||
|
theDI << (aParams.ToEnableDepthPrepass ? "on " : "off ");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
aParams.ToEnableDepthPrepass = Standard_True;
|
||||||
|
if (anArgIter + 1 < theArgNb
|
||||||
|
&& ViewerTest::ParseOnOff (theArgVec[anArgIter + 1], aParams.ToEnableDepthPrepass))
|
||||||
|
{
|
||||||
|
++anArgIter;
|
||||||
|
}
|
||||||
|
}
|
||||||
else if (aFlag == "-rendscale"
|
else if (aFlag == "-rendscale"
|
||||||
|| aFlag == "-renderscale"
|
|| aFlag == "-renderscale"
|
||||||
|| aFlag == "-renderresolutionscale")
|
|| aFlag == "-renderresolutionscale")
|
||||||
@ -11946,6 +11961,7 @@ void ViewerTest::ViewerCommands(Draw_Interpretor& theCommands)
|
|||||||
"\n '-raster' Disables GPU ray-tracing"
|
"\n '-raster' Disables GPU ray-tracing"
|
||||||
"\n '-msaa 0..4' Specifies number of samples for MSAA"
|
"\n '-msaa 0..4' Specifies number of samples for MSAA"
|
||||||
"\n '-oit off|0.0-1.0' Enables/disables OIT and sets depth weight factor"
|
"\n '-oit off|0.0-1.0' Enables/disables OIT and sets depth weight factor"
|
||||||
|
"\n '-depthPrePass on|off' Enables/disables depth pre-pass"
|
||||||
"\n '-rendScale value Rendering resolution scale factor"
|
"\n '-rendScale value Rendering resolution scale factor"
|
||||||
"\n '-rayTrace' Enables GPU ray-tracing"
|
"\n '-rayTrace' Enables GPU ray-tracing"
|
||||||
"\n '-rayDepth 0..10' Defines maximum ray-tracing depth"
|
"\n '-rayDepth 0..10' Defines maximum ray-tracing depth"
|
||||||
|
27
tests/v3d/glsl/depthprepass
Normal file
27
tests/v3d/glsl/depthprepass
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
puts "========"
|
||||||
|
puts "0029300: Visualization, TKOpenGl - provide depth pre-pass option"
|
||||||
|
puts "========"
|
||||||
|
|
||||||
|
vclear
|
||||||
|
vclose ALL
|
||||||
|
vinit View1
|
||||||
|
|
||||||
|
# display objects
|
||||||
|
psphere s 1
|
||||||
|
box b 1 2 3
|
||||||
|
vaxo
|
||||||
|
vdisplay -dispMode 1 s b
|
||||||
|
vaspects b -setColor RED -setTransparency 0.5
|
||||||
|
vfit
|
||||||
|
vzbufftrihedron
|
||||||
|
vmoveto 150 250
|
||||||
|
vcaps -ffp 0
|
||||||
|
vrenderparams -shadingModel phong
|
||||||
|
|
||||||
|
vrenderparams -depthPrePass off
|
||||||
|
vdump $::imagedir/${::casename}_1.png
|
||||||
|
|
||||||
|
vrenderparams -depthPrePass on
|
||||||
|
vdump $::imagedir/${::casename}_2.png
|
||||||
|
|
||||||
|
if { [diffimage $::imagedir/${::casename}_1.png $::imagedir/${::casename}_2.png 0 0 0 $::imagedir/${::casename}_diff.png] != 0 } { puts "Error: images differ" }
|
Loading…
x
Reference in New Issue
Block a user