Skip to content

Commit 3e1595f

Browse files
committed
Removed debugger calls.
1 parent f246c27 commit 3e1595f

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

src/pixi/renderers/webgl/shaders/PixiShader.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,6 @@ PIXI.PixiShader.prototype.initUniforms = function()
180180

181181
if (type === 'sampler2D')
182182
{
183-
debugger;
184183
uniform._init = false;
185184

186185
if (uniform.value !== null)

src/pixi/renderers/webgl/utils/WebGLFastSpriteBatch.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,9 +179,8 @@ PIXI.WebGLFastSpriteBatch.prototype.end = function()
179179
* @method render
180180
* @param spriteBatch {WebGLSpriteBatch}
181181
*/
182-
PIXI.WebGLFastSpriteBatch.prototype.render = function(spriteBatch)
182+
PIXI.WebGLFastSpriteBatch.prototype.render = function (spriteBatch)
183183
{
184-
debugger;
185184
var children = spriteBatch.children;
186185
var sprite = children[0];
187186

@@ -369,8 +368,6 @@ PIXI.WebGLFastSpriteBatch.prototype.renderSprite = function(sprite)
369368
*/
370369
PIXI.WebGLFastSpriteBatch.prototype.flush = function()
371370
{
372-
debugger;
373-
374371
// If the batch is length 0 then return as there is nothing to draw
375372
if (this.currentBatchSize===0)return;
376373

0 commit comments

Comments
 (0)