mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-09 15:09:34 +02:00
Merge pull request #8849 from zzmp/fix/shapekey-ref
fix invalid ShapeKey ref
This commit is contained in:
commit
9cb0c973de
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ void render::renderStateSortShapes(const SceneContextPointer& sceneContext, cons
|
||||||
|
|
||||||
{
|
{
|
||||||
assert(item.getKey().isShape());
|
assert(item.getKey().isShape());
|
||||||
const auto& key = item.getShapeKey();
|
const auto key = item.getShapeKey();
|
||||||
if (key.isValid() && !key.hasOwnPipeline()) {
|
if (key.isValid() && !key.hasOwnPipeline()) {
|
||||||
auto& bucket = sortedShapes[key];
|
auto& bucket = sortedShapes[key];
|
||||||
if (bucket.empty()) {
|
if (bucket.empty()) {
|
||||||
|
|
Loading…
Reference in a new issue