Horde3D

Next-Generation Graphics Engine
It is currently 19.04.2024, 04:42

All times are UTC + 1 hour




Post new topic Reply to topic  [ 2 posts ] 
Author Message
PostPosted: 29.04.2010, 20:16 
Offline

Joined: 24.03.2010, 10:17
Posts: 55
We encountered a rare crash in egRenderer.cpp Renderer::drawModels (during the call to updateShadowMaps)
Reproduction: 100% with specific scene.

Callstack:
(Lines in callstack are bit off, due to some debugging information, but the actual line is 1721, egRenderer.cpp, svn rev 237)
Code:
#0   0x00072271 in Renderer::drawModels at egRenderer.cpp:1721
#1   0x0006c1ce in Renderer::drawRenderables at egRenderer.cpp:1524
#2   0x0006e060 in Renderer::updateShadowMap at egRenderer.cpp:1018
#3   0x0007309f in Renderer::drawLightGeometry at egRenderer.cpp:1362
#4   0x00073bf0 in Renderer::render at egRenderer.cpp:2018
#5   0x0003f278 in h3dRender at egMain.cpp:111
#6   0x000059cd in Application::mainLoop at app.cpp:250
#7   0x00006eeb in main at main.cpp:227

Actual Line 1721 (svn rev 237)
Code:
if( curShader->uni_worldMat >= 0 )

with curShader == 0 -> bad access -> crash

Analysis:
The problem stems from the fact the call
Code:
if( !Modules::renderer().setMaterial( meshNode->getMaterialRes(), shaderContext ) )

has a side-effect, e.g. setting Renderer's _curShader to 0 (which is ok).

But the drawModels loop always assumes that, if it has the same curMatRes Ptr (as it didn't change by a Mesh),
that there is no need to re-set the material.
Now consider this order of meshes (with materials).

Mesh A - Material A -> setMaterial will result in _curShader = ShaderA, curMatRes = Material A
Mesh B - Material B -> setMaterial will result in _curShader = 0, curMatRes = Material A (stays the same)
Mesh C - Material A -> setMaterial will not be called, because curMatRes == MeshC->Material (=MaterialA)

hence Modules::Renderer().getCurShader() (line 1703) will return 0 and curShader will be 0 -> crash.

I am not sure which is the cleanest and best solution (also in terms of performance).
If there are no further side effects of Modules::renderer().setMaterialRec
a call to Modules::renderer().setShaderComb(prevShader) would suffice, in case the call to
Code:
if( !Modules::renderer().setMaterial( meshNode->getMaterialRes(), shaderContext )
in line 1681 failed.
But if setMaterialRec has more side-effects (GL State, Texture wise, ...), we may need to set curMatRes=0 after a failed call in line 1681,
so the material gets re-set for the next Mesh. This is what we did actually and worked out.

BTW: This is the first real crash in Horde during normal operation which we encountered so far! So it's really amazing that Horde is so stable (besides this rare crash) and it has very few bugs so far. Great job, Guys!


Top
 Profile  
Reply with quote  
PostPosted: 30.04.2010, 09:00 
Offline
Tool Developer

Joined: 13.11.2007, 11:07
Posts: 1150
Location: Germany
Big thanks for the very detailed bug report, as before they are always very much appreciated. I will discuss what may be the best solution to fix the problem with marciano.


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 35 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group