We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00382bf commit 83b7d11Copy full SHA for 83b7d11
2 files changed
src/renderer/webgl/pipelines/FlatTintPipeline.js
@@ -524,6 +524,8 @@ var FlatTintPipeline = new Class({
524
var mve = sre * cma + srf * cmc + cme;
525
var mvf = sre * cmb + srf * cmd + cmf;
526
527
+ pathArray.length = 0;
528
+
529
for (var cmdIndex = 0, cmdLength = commands.length; cmdIndex < cmdLength; ++cmdIndex)
530
{
531
cmd = commands[cmdIndex];
src/renderer/webgl/pipelines/TextureTintPipeline.js
@@ -104,8 +104,8 @@ var TextureTintPipeline = new Class({
104
this.vertexBuffer = pipelineVertexBuffer;
105
}
106
107
- if (this.viewMatrixDirty) this.viewIdentity();
108
- if (this.modelMatrixDirty) this.modelIdentity();
+ this.viewIdentity();
+ this.modelIdentity();
109
},
110
111
drawEmitterManager: function (emitterManager, camera)
0 commit comments