diff --git a/packages/display/src/Container.js b/packages/display/src/Container.js index acf5620..357734e 100644 --- a/packages/display/src/Container.js +++ b/packages/display/src/Container.js @@ -494,7 +494,7 @@ } // do a quick check to see if this element has a mask or a filter. - if (this._mask || (this._filters && this._filters.length)) + if (this._mask || (this.filters && this.filters.length)) { this.renderAdvanced(renderer); } @@ -520,7 +520,7 @@ { renderer.batch.flush(); - const filters = this._filters; + const filters = this.filters; const mask = this._mask; // push filter first as we need to ensure the stencil buffer is correct for any masking