Compare commits

...
2 Commits
Author SHA1 Message Date
Jamie Wong 82867ab234 1.0.1 2018-08-23 10:01:13 -07:00
Jamie Wong 6116371ffb Fix flamechart bleeding (#151)
Fixes #150
2018-08-23 09:59:16 -07:00
3 changed files with 7 additions and 1 deletions
+4
View File
@@ -1,3 +1,7 @@
## [1.0.1] - 2018-08-23
* Fixed an issue where flamegraph bounds were not always being cleared correctly, leading to visual artifacts [#150]
## [1.0.0] - 2018-08-23
### Fixed
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "speedscope",
"version": "1.0.0",
"version": "1.0.1",
"description": "",
"repository": "jlfwong/speedscope",
"main": "index.js",
+2
View File
@@ -337,6 +337,8 @@ export class FlamechartRenderer {
)
renderInto(this.gl, renderTarget, () => {
this.gl.clear(new Graphics.Color(0, 0, 0, 0))
const viewportRect = new Rect(
Vec2.zero,
new Vec2(this.gl.viewport.width, this.gl.viewport.height),