Option to disable hardware acceleration on Element Desktop (#22295)
Override ElectronPlatform to support disableHardwareAccelerationpull/22321/head
parent
6c7f663983
commit
11a3011cbd
|
@ -414,6 +414,18 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
||||||
return this.ipcCall('setMinimizeToTrayEnabled', enabled);
|
return this.ipcCall('setMinimizeToTrayEnabled', enabled);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public supportsTogglingHardwareAcceleration(): boolean {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public async getHardwareAccelerationEnabled(): Promise<boolean> {
|
||||||
|
return this.ipcCall('getHardwareAccelerationEnabled');
|
||||||
|
}
|
||||||
|
|
||||||
|
public async setHardwareAccelerationEnabled(enabled: boolean): Promise<void> {
|
||||||
|
return this.ipcCall('setHardwareAccelerationEnabled', enabled);
|
||||||
|
}
|
||||||
|
|
||||||
async canSelfUpdate(): Promise<boolean> {
|
async canSelfUpdate(): Promise<boolean> {
|
||||||
const feedUrl = await this.ipcCall('getUpdateFeedUrl');
|
const feedUrl = await this.ipcCall('getUpdateFeedUrl');
|
||||||
return Boolean(feedUrl);
|
return Boolean(feedUrl);
|
||||||
|
|
Loading…
Reference in New Issue