mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-05 18:16:23 +03:00
0025762: Visualization, TKOpenGl - fix debug assertion within OpenGl_Workspace::UploadRaytraceData()
This commit is contained in:
parent
34a0b4463a
commit
1e99558fbd
@ -1832,13 +1832,16 @@ Standard_Boolean OpenGl_Workspace::UploadRaytraceData()
|
|||||||
}
|
}
|
||||||
|
|
||||||
const NCollection_Handle<BVH_Tree<Standard_ShortReal, 3> >& aBVH = myRaytraceGeometry.BVH();
|
const NCollection_Handle<BVH_Tree<Standard_ShortReal, 3> >& aBVH = myRaytraceGeometry.BVH();
|
||||||
|
const Standard_Integer aBvhLength = aBVH->Length();
|
||||||
aResult &= mySceneNodeInfoTexture->SubData (myGlContext, 0, aBVH->Length(),
|
if (aBvhLength > 0)
|
||||||
reinterpret_cast<const GLuint*> (&aBVH->NodeInfoBuffer().front()));
|
{
|
||||||
aResult &= mySceneMinPointTexture->SubData (myGlContext, 0, aBVH->Length(),
|
aResult &= mySceneNodeInfoTexture->SubData (myGlContext, 0, aBVH->Length(),
|
||||||
reinterpret_cast<const GLfloat*> (&aBVH->MinPointBuffer().front()));
|
reinterpret_cast<const GLuint*> (&aBVH->NodeInfoBuffer().front()));
|
||||||
aResult &= mySceneMaxPointTexture->SubData (myGlContext, 0, aBVH->Length(),
|
aResult &= mySceneMinPointTexture->SubData (myGlContext, 0, aBVH->Length(),
|
||||||
reinterpret_cast<const GLfloat*> (&aBVH->MaxPointBuffer().front()));
|
reinterpret_cast<const GLfloat*> (&aBVH->MinPointBuffer().front()));
|
||||||
|
aResult &= mySceneMaxPointTexture->SubData (myGlContext, 0, aBVH->Length(),
|
||||||
|
reinterpret_cast<const GLfloat*> (&aBVH->MaxPointBuffer().front()));
|
||||||
|
}
|
||||||
|
|
||||||
for (Standard_Integer aNodeIdx = 0; aNodeIdx < aBVH->Length(); ++aNodeIdx)
|
for (Standard_Integer aNodeIdx = 0; aNodeIdx < aBVH->Length(); ++aNodeIdx)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user