render: move cuInit setup into framework.h
This commit is contained in:
@@ -10,9 +10,6 @@
|
||||
int hookedCreateWindow(const char* title, void(__cdecl* exit_function)(int))
|
||||
{
|
||||
// trick Optimus into switching to the NVIDIA GPU
|
||||
HMODULE nvcudaModule = LoadLibraryW(L"nvcuda.dll");
|
||||
// cuInit actually returns a CUresult, but we don't really care about it
|
||||
void(WINAPI * cuInit)(unsigned int flags) = (void(WINAPI*)(unsigned int flags))GetProcAddress(nvcudaModule, "cuInit");
|
||||
if (cuInit != NULL) cuInit(0);
|
||||
|
||||
if (nDisplay == 2) // fullscreen
|
||||
|
||||
Reference in New Issue
Block a user