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 Apr 15, 2024
1 parent e96aadf commit 1151d3b
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 @@ -313,7 +313,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 1151d3b

Please sign in to comment.