Skip to content

Commit

Permalink
don't disable the graphics stack #247
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparticuz committed Jul 16, 2024
1 parent 2c715c4 commit c51ae58
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion source/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,11 @@ class Chromium {
`Graphics mode must be a boolean, you entered '${value}'`
);
}
this.graphicsMode = value;

// Disabling 'disabling the gpu'
// Blocked by https://github.com/Sparticuz/chromium/issues/247
// this.graphicsMode = value;
this.graphicsMode = true;
}
}

Expand Down

0 comments on commit c51ae58

Please sign in to comment.