Define NvOptimusEnablement to tell the Nvidia driver we need high performance

This commit is contained in:
Pierre Bourdon 2012-12-25 13:51:13 +01:00
parent ba348c29d7
commit b3ed3bdb91
1 changed files with 9 additions and 0 deletions

View File

@ -45,6 +45,15 @@
#include <wx/intl.h> #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 // Main window