Merge pull request #493 from parkerlamb/nv_optimus

Nvidia Optimus support
This commit is contained in:
Ben Vanik 2015-12-27 10:15:40 -08:00
commit 629a75c162
1 changed files with 10 additions and 0 deletions

View File

@ -26,6 +26,16 @@
// Available graphics systems:
#include "xenia/gpu/gl4/gl4_graphics_system.h"
// Nvidia Optimus/AMD PowerXpress support
// http://developer.download.nvidia.com/devzone/devcenter/gamegraphics/files/OptimusRenderingPolicies.pdf
// http://stackoverflow.com/questions/17458803/amd-equivalent-to-nvoptimusenablement
#if XE_PLATFORM_WIN32
extern "C" {
__declspec(dllexport) unsigned long NvOptimusEnablement = 0x00000001;
__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
}
#endif // XE_PLATFORM_WIN32
// Available input drivers:
#include "xenia/hid/nop/nop_hid.h"
#if XE_PLATFORM_WIN32