Fixed bug with incorrect reference to stage
This commit is contained in:
parent
e8b14def95
commit
8138dbd3bb
2 changed files with 2 additions and 2 deletions
|
@ -5115,7 +5115,7 @@ PIXI.WebGLRenderer.prototype.renderDisplayObject = function(displayObject, proje
|
||||||
this.filterManager.begin(this.renderSession, null);
|
this.filterManager.begin(this.renderSession, null);
|
||||||
|
|
||||||
// render the scene!
|
// render the scene!
|
||||||
stage._renderWebGL(this.renderSession);
|
displayObject._renderWebGL(this.renderSession);
|
||||||
|
|
||||||
// finish the sprite batch
|
// finish the sprite batch
|
||||||
this.spriteBatch.end();
|
this.spriteBatch.end();
|
||||||
|
|
|
@ -211,7 +211,7 @@ PIXI.WebGLRenderer.prototype.renderDisplayObject = function(displayObject, proje
|
||||||
this.filterManager.begin(this.renderSession, null);
|
this.filterManager.begin(this.renderSession, null);
|
||||||
|
|
||||||
// render the scene!
|
// render the scene!
|
||||||
stage._renderWebGL(this.renderSession);
|
displayObject._renderWebGL(this.renderSession);
|
||||||
|
|
||||||
// finish the sprite batch
|
// finish the sprite batch
|
||||||
this.spriteBatch.end();
|
this.spriteBatch.end();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue