[runtimes] Fix formatting.

This commit is contained in:
Mario Zechner 2021-09-14 01:58:39 +02:00
parent eedaccc418
commit cd5f561739
2 changed files with 3 additions and 2 deletions

View File

@ -114,7 +114,8 @@ void DeformTimeline::apply(Skeleton &skeleton, float lastTime, float time, Vecto
}
}
case MixBlend_Replace:
case MixBlend_Add: {}
case MixBlend_Add: {
}
}
return;
}

View File

@ -119,7 +119,7 @@ export class SpineCanvas {
}
/** Clears the canvas with the given color. The color values are given in the range [0,1]. */
clear(r: number, g: number, b: number, a: number) {
clear (r: number, g: number, b: number, a: number) {
this.gl.clearColor(r, g, b, a);
this.gl.clear(this.gl.COLOR_BUFFER_BIT);
}