cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

nbsi
Journeyman III

How to read and write Antialias and Anisotropic settings with C++?

Is this possible with ADL SDK 3.0?

thx a lot
Neubsi
0 Likes
3 Replies
Byron
Staff

No, we don't have an API for this

0 Likes
nbsi
Journeyman III

thx, i found the registry settings required.

anyone whos interested or searching:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video\"YOUR DEVICEID"\0000\UMD

"AntiAlias"=hex:31,00
"AntiAliasSamples"=hex:38,00
"AnisoType"=hex:38,00,00,00
"AnisoDegree"=hex:38,00,00,00
"AnisotropyOptimise"=hex:31,00

and a lot more

greetings
0 Likes

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Video\"YOUR DEVICEID"\0000\UMD 

"AntiAlias"=hex:31,00 
"AntiAliasSamples"=hex:38,00 
"AnisoType"=hex:38,00,00,00 
"AnisoDegree"=hex:38,00,00,00 
"AnisotropyOptimise"=hex:31,00 

I found mine to be a bit different:

"AntiAlias"=hex:30,00 
"AntiAliasSamples"=hex:32,00 
"AnisoType"= not there (?!)
"AnisoDegree"= not there (?!)
"AnisotropyOptimise" = not there (?!)

What's the significance of "AnisotropyOptimise", "AnisoType", and "AnisoDegree"?

 

0 Likes