1
0
Fork 0
mirror of https://github.com/PabloMK7/citra.git synced 2025-07-09 00:45:16 +00:00

Remove remnants of separable shader setting ()

This commit is contained in:
GPUCode 2023-04-26 01:19:02 +03:00 committed by GitHub
parent 000a616bd9
commit 227926c1fa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
12 changed files with 0 additions and 81 deletions
src/citra_qt/configuration

View file

@ -628,12 +628,6 @@ void Config::ReadRendererValues() {
ReadGlobalSetting(Settings::values.graphics_api);
ReadGlobalSetting(Settings::values.use_hw_shader);
#ifdef __APPLE__
// Hardware shader is broken on macos with Intel GPUs thanks to poor drivers.
// We still want to provide this option for test/development purposes, but disable it by
// default.
ReadGlobalSetting(Settings::values.separable_shader);
#endif
ReadGlobalSetting(Settings::values.shaders_accurate_mul);
ReadGlobalSetting(Settings::values.use_disk_shader_cache);
ReadGlobalSetting(Settings::values.use_vsync_new);
@ -1107,11 +1101,6 @@ void Config::SaveRendererValues() {
WriteGlobalSetting(Settings::values.graphics_api);
WriteGlobalSetting(Settings::values.use_hw_shader);
#ifdef __APPLE__
// Hardware shader is broken on macos thanks to poor drivers.
// TODO: enable this for none Intel GPUs
WriteGlobalSetting(Settings::values.separable_shader);
#endif
WriteGlobalSetting(Settings::values.shaders_accurate_mul);
WriteGlobalSetting(Settings::values.use_disk_shader_cache);
WriteGlobalSetting(Settings::values.use_vsync_new);