mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Define NvOptimusEnablement to tell the Nvidia driver we need high performance
This commit is contained in:
parent
ba348c29d7
commit
b3ed3bdb91
1 changed files with 9 additions and 0 deletions
|
@ -45,6 +45,15 @@
|
|||
|
||||
#include <wx/intl.h>
|
||||
|
||||
// Nvidia drivers >= v302 will check if the application exports a global
|
||||
// variable named NvOptimusEnablement to know if it should run the app in high
|
||||
// performance graphics mode or using the IGP.
|
||||
#ifdef WIN32
|
||||
extern "C" {
|
||||
__declspec(dllexport) DWORD NvOptimusEnablement = 1;
|
||||
}
|
||||
#endif
|
||||
|
||||
// ------------
|
||||
// Main window
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue