Skip to content

Commit

Permalink
Remove log
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyriar committed Sep 14, 2017
1 parent aca7ab6 commit 8bdc8fb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/renderer/BaseRenderLayer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ export abstract class BaseRenderLayer implements IRenderLayer {
this._ctx.scale(window.devicePixelRatio, window.devicePixelRatio);
// Draw the background if this is an opaque layer
if (!_alpha) {
console.log('clearAll!');
this.clearAll();
}
container.appendChild(this._canvas);
Expand Down Expand Up @@ -167,7 +166,6 @@ export abstract class BaseRenderLayer implements IRenderLayer {
if (this._alpha) {
this._ctx.clearRect(0, 0, this._canvas.width, this._canvas.height);
} else {
console.log('fill with', this._colors.background);
this._ctx.fillStyle = this._colors.background;
this._ctx.fillRect(0, 0, this._canvas.width, this._canvas.height);
}
Expand Down

0 comments on commit 8bdc8fb

Please sign in to comment.