Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changes not being reflected in Nvidia app #6

Open
fehbari opened this issue Nov 13, 2024 · 1 comment
Open

Changes not being reflected in Nvidia app #6

fehbari opened this issue Nov 13, 2024 · 1 comment

Comments

@fehbari
Copy link

fehbari commented Nov 13, 2024

The new Nvidia app was just released officially to replace GeForce Experience and unify graphics settings in a single app. frl-toggle continues to work fine and the changes are reflected in the legacy Nvidia control panel. However, the new Nvidia app shows the global FPS limit as being "0".

I'm not sure if this is a problem with frl-toggle implementation or the Nvidia app, but it might be worth looking into if there's a potential fix.

@FrogTheFrog
Copy link
Owner

After looking into it, it seems that the Nvidia App use 2 fields for whatever reason to store FPS values:

	{
		"settingName": "MaxFrameRate",
		"settingValue": {
			"SettingInfo": {
				"SettingType": 0,
				"enumId": 751,
				"isSupported": true,
				"isDynamic": false
			},
			"MaxFrameRateValue": 60,
			"isUserModified": true,
			"isGreyedOut": false,
			"settingDefaultValue": 0,
			"featureEnum": {
				"0": "Off",
				"1": "On",
				"Off": 0,
				"On": 1
			},
			"featureEnumKeys": [
				"Off",
				"On"
			],
			"settingDefaultKey": "Off",
			"isDisableDueToDependent": false
		}
	},
	{
		"settingName": "MaxFrameRateFPS",
		"settingValue": {
			"SettingInfo": {
				"SettingType": 0,
				"enumId": 754,
				"isSupported": true,
				"isDynamic": false
			},
			"MaxFrameRateFPSValue": 61,
			"isUserModified": true,
			"isGreyedOut": false,
			"settingDefaultValue": 0,
			"isDisableDueToDependent": false
		}
	},

One is called MaxFrameRate that I change and is exposed via their official API and MaxFrameRateFPS which I do not know the purpose of as they are more or less the same... It is synced in this direction MaxFrameRateFPS -> MaxFrameRate, but not the other way around...

In short I have no way to change this MaxFrameRateFPS value.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants