Skip to content

Commit

Permalink
Matching to Houdini build 18.5.32.
Browse files Browse the repository at this point in the history
  • Loading branch information
SideFX authored and Prisms User committed Nov 17, 2019
1 parent d1663b7 commit eb14850
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/houdini/lib/H_USD/HUSD/HUSD_Scene.C
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,14 @@ HUSD_Scene::fillGeometry(UT_Array<HUSD_HydraGeoPrimPtr> &array, int64 &id)
array.entries(0);

UT_AutoLock lock(myDisplayLock);

array.entries(getMaxGeoIndex());
array.zero();
for(auto it : myDisplayGeometry)
array.append(it.second);
{
const int idx = it.second->index();
array(idx) = it.second;
}

id = myGeoSerial;
return true;
Expand Down

0 comments on commit eb14850

Please sign in to comment.