mirror of
https://github.com/photonstorm/phaser
synced 2024-11-27 15:12:18 +00:00
Getting ready to move the shaders out.
This commit is contained in:
parent
f1760f961d
commit
863efde5ed
1 changed files with 1 additions and 2 deletions
|
@ -21,8 +21,6 @@ Phaser.Renderer.WebGL = function (game)
|
|||
|
||||
this.type = Phaser.WEBGL;
|
||||
|
||||
this.currentShader = null;
|
||||
|
||||
/**
|
||||
* This sets if the CanvasRenderer will clear the canvas or not before the new render pass.
|
||||
* If the Stage is NOT transparent Pixi will use a canvas sized fillRect operation every frame to set the canvas background color.
|
||||
|
@ -165,6 +163,7 @@ Phaser.Renderer.WebGL = function (game)
|
|||
|
||||
this.currentBlendMode = -1;
|
||||
this.currentTextureSource = null;
|
||||
this.currentShader = null;
|
||||
|
||||
this.blendModes = [];
|
||||
|
||||
|
|
Loading…
Reference in a new issue