1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-09 12:42:11 +00:00

Actually copy alpha blended drawables to the new stategraph

This commit is contained in:
AnyOldName3 2020-11-12 23:23:40 +00:00
parent cdbf19a508
commit fcfd340c69

View File

@ -106,7 +106,15 @@ StateGraph* ShadowsBin::cullStateGraph(StateGraph* sg, StateGraph* root, std::un
}
if (state.mAlphaBlend)
return sg->find_or_insert(mShaderAlphaTestStateSet);
{
sg_new = sg->find_or_insert(mShaderAlphaTestStateSet);
for (RenderLeaf* leaf : sg->_leaves)
{
leaf->_parent = sg_new;
sg_new->_leaves.push_back(leaf);
}
return sg_new;
}
return sg;
}