this.graphics.PreparingDeviceSettings += new EventHandler(graphics_PreparingDeviceSettings);
and add the following:
void graphics_PreparingDeviceSettings(object sender, PreparingDeviceSettingsEventArgs e)
{
foreach (GraphicsAdapter curAdapter in GraphicsAdapter.Adapters)
{
if (curAdapter.Description.Contains("NVIDIA PerfHUD"))
{
e.GraphicsDeviceInformation.Adapter = curAdapter;
e.GraphicsDeviceInformation.DeviceType = DeviceType.Reference;
break;
}
}
}
Then build the game, and drag and drop the exe onto the NVIDIA PerfHUD 5 Launcher icon.
To see more about what NVidia PerfHud is all about watch this video:
No comments:
Post a Comment