0
0
mirror of https://github.com/Ishan09811/pine.git synced 2025-04-29 08:25:10 +00:00
This commit is contained in:
Ishan09811 2025-01-03 18:59:36 +05:30 committed by GitHub
parent ee40f77378
commit 2baf7c7114
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -39,6 +39,7 @@ 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,6 +72,7 @@ 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;