0
0
mirror of https://github.com/Ishan09811/pine.git synced 2025-04-29 16:35:12 +00:00
This commit is contained in:
Ishan09811 2025-01-04 11:34:08 +05:30 committed by GitHub
parent b71d604f08
commit a132308a4b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 0 additions and 6 deletions

View File

@ -39,7 +39,6 @@ namespace skyline {
isInternetEnabled = ktSettings.GetBool("isInternetEnabled");
forceTripleBuffering = ktSettings.GetBool("forceTripleBuffering");
vsyncMode = ktSettings.GetInt<int>("vsyncMode");
anisotropicFilter = ktSettings.GetInt<float>("anisotropic_filter");
gpuDriver = ktSettings.GetString("gpuDriver");
gpuDriverLibraryName = ktSettings.GetString("gpuDriverLibraryName");
executorSlotCountScale = ktSettings.GetInt<u32>("executorSlotCountScale");

View File

@ -72,7 +72,6 @@ namespace skyline {
Setting<bool> forceTripleBuffering; //!< If the presentation engine should always triple buffer even if the swapchain supports double buffering
Setting<int> vsyncMode;
Setting<bool> disableShaderCache; //!< Prevents cached shaders from being loaded and disables caching of new shaders
Setting<float> anisotropicFilter;
// CPU
Setting<bool> enableJitFastmem;

View File

@ -27,9 +27,6 @@ data class NativeSettings(
// CPU
var enableJitFastmem : Boolean,
// Display
var anisotropicFilter : Int,
// GPU
var gpuDriver : String,
var gpuDriverLibraryName : String,
@ -60,7 +57,6 @@ data class NativeSettings(
pref.systemRegion,
pref.isInternetEnabled,
pref.enableJitFastmem,
pref.anisotropicFilter,
if (pref.gpuDriver == EmulationSettings.SYSTEM_GPU_DRIVER) "" else pref.gpuDriver,
if (pref.gpuDriver == EmulationSettings.SYSTEM_GPU_DRIVER) "" else GpuDriverHelper.getLibraryName(context, pref.gpuDriver),
pref.forceTripleBuffering,