Skip to content

Commit

Permalink
Merge pull request thi-ng#219 from stwind/feature/unbind-fbo
Browse files Browse the repository at this point in the history
fix(webgl): unbind fbo after configure
  • Loading branch information
postspectacular authored Apr 20, 2020
2 parents 4ec4361 + 25414b5 commit 7eece11
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/webgl/src/fbo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ export class FBO implements IFbo {
0
);
}
return this.validate();
this.validate();
return this.unbind();
}

validate() {
Expand Down

0 comments on commit 7eece11

Please sign in to comment.