FIX: disable the dual graphics card option

Change-Id: I76967e5e87abc1c55920bcf31b196c3ab588bd58
This commit is contained in:
zhimin.zeng 2022-08-30 14:16:03 +08:00 committed by Lane.Wei
parent a8d91531b3
commit 06af15f60c
1 changed files with 2 additions and 2 deletions

View File

@ -14,8 +14,8 @@ extern "C"
{
// Let the NVIDIA and AMD know we want to use their graphics card
// on a dual graphics card system.
__declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
__declspec(dllexport) DWORD NvOptimusEnablement = 0x00000000;
__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 0;
}
#endif /* SLIC3R_GUI */