File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1429,15 +1429,14 @@ this.createjs = this.createjs||{};
14291429 this . _drawContent ( container , true ) ;
14301430
14311431 // re-align buffers with fake filter passes to solve certain error cases
1432- if ( manager . _cacheCanvas !== ( ( manager . _filterCount % 2 ) ? this . _batchTextureConcat : this . _batchTextureOutput ) ) {
1433- // pre filter pass to align output, may of become misaligned due to composite operations
1434- filtersLeft ++ ;
1435- }
14361432 if ( this . isCacheControlled ) {
14371433 // post filter pass to place content into output buffer
14381434 //TODO: add in directDraw support for cache controlled StageGLs
14391435 filterCount ++ ;
14401436 filtersLeft ++ ;
1437+ } else if ( manager . _cacheCanvas !== ( ( manager . _filterCount % 2 ) ? this . _batchTextureConcat : this . _batchTextureOutput ) ) {
1438+ // pre filter pass to align output, may of become misaligned due to composite operations
1439+ filtersLeft ++ ;
14411440 }
14421441
14431442 while ( filtersLeft ) { //warning: pay attention to where filtersLeft is modified, this is a micro-optimization
You can’t perform that action at this time.
0 commit comments