We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 643ae5a commit 9d727f0Copy full SHA for 9d727f0
src/vs/workbench/contrib/performance/browser/inputLatencyContrib.ts
@@ -33,8 +33,9 @@ export class InputLatencyContrib extends Disposable implements IWorkbenchContrib
33
}, 60000));
34
35
36
- // Only log 1% of users selected randomly to reduce the volume of data
37
- if (Math.random() <= 0.01) {
+ // Only log 1% of users selected randomly to reduce the volume of data, always report if GPU
+ // acceleration is enabled as it's opt-in
38
+ if (Math.random() <= 0.01 || this._configurationService.getValue('editor.experimentalGpuAcceleration') === 'on') {
39
this._setupListener();
40
}
41
0 commit comments