FIX: disable the dual graphics card option

Change-Id: I76967e5e87abc1c55920bcf31b196c3ab588bd58
This commit is contained in:
zhimin.zeng
2022-09-02 13:16:54 +08:00
committed by Lane.Wei
parent a8d91531b3
commit 06af15f60c
+2 -2
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 */