mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[host] windows: make D3DKMTSetProcessSchedulingPriorityClass
global
Testing shows that `D3DKMTSetProcessSchedulingPriorityClass` has a positive performance impact for NvFBC as well as DXGI, as such always try to boost the priority for the windows host.
This commit is contained in:
parent
041b95507d
commit
78b8e2a73c
@ -37,18 +37,6 @@
|
|||||||
|
|
||||||
#include "dxgi_extra.h"
|
#include "dxgi_extra.h"
|
||||||
|
|
||||||
typedef enum _D3DKMT_SCHEDULINGPRIORITYCLASS
|
|
||||||
{
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE,
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL,
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL,
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL,
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH,
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME
|
|
||||||
}
|
|
||||||
D3DKMT_SCHEDULINGPRIORITYCLASS;
|
|
||||||
typedef NTSTATUS WINAPI (*PD3DKMTSetProcessSchedulingPriorityClass)(HANDLE, D3DKMT_SCHEDULINGPRIORITYCLASS);
|
|
||||||
|
|
||||||
#define LOCKED(x) INTERLOCKED_SECTION(this->deviceContextLock, x)
|
#define LOCKED(x) INTERLOCKED_SECTION(this->deviceContextLock, x)
|
||||||
|
|
||||||
enum TextureState
|
enum TextureState
|
||||||
@ -433,39 +421,6 @@ static bool dxgi_init(void)
|
|||||||
DEBUG_INFO("Capture Size : %u x %u", this->width, this->height);
|
DEBUG_INFO("Capture Size : %u x %u", this->width, this->height);
|
||||||
DEBUG_INFO("AcquireLock : %s" , this->useAcquireLock ? "enabled" : "disabled");
|
DEBUG_INFO("AcquireLock : %s" , this->useAcquireLock ? "enabled" : "disabled");
|
||||||
|
|
||||||
// bump up our priority
|
|
||||||
{
|
|
||||||
HMODULE gdi32 = GetModuleHandleA("GDI32");
|
|
||||||
if (gdi32)
|
|
||||||
{
|
|
||||||
PD3DKMTSetProcessSchedulingPriorityClass fn =
|
|
||||||
(PD3DKMTSetProcessSchedulingPriorityClass)GetProcAddress(gdi32, "D3DKMTSetProcessSchedulingPriorityClass");
|
|
||||||
|
|
||||||
if (fn)
|
|
||||||
{
|
|
||||||
status = fn(GetCurrentProcess(), D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME);
|
|
||||||
if (FAILED(status))
|
|
||||||
{
|
|
||||||
DEBUG_WARN("Failed to set realtime GPU priority.");
|
|
||||||
DEBUG_INFO("This is not a failure, please do not report this as an issue.");
|
|
||||||
DEBUG_INFO("To fix this, install and run the Looking Glass host as a service.");
|
|
||||||
DEBUG_INFO("looking-glass-host.exe InstallService");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
IDXGIDevice * dxgi;
|
|
||||||
status = ID3D11Device_QueryInterface(this->device, &IID_IDXGIDevice, (void **)&dxgi);
|
|
||||||
if (FAILED(status))
|
|
||||||
{
|
|
||||||
DEBUG_WINERROR("failed to query DXGI interface from device", status);
|
|
||||||
goto fail;
|
|
||||||
}
|
|
||||||
|
|
||||||
IDXGIDevice_SetGPUThreadPriority(dxgi, 7);
|
|
||||||
IDXGIDevice_Release(dxgi);
|
|
||||||
}
|
|
||||||
|
|
||||||
// try to reduce the latency
|
// try to reduce the latency
|
||||||
{
|
{
|
||||||
IDXGIDevice1 * dxgi;
|
IDXGIDevice1 * dxgi;
|
||||||
|
@ -467,6 +467,41 @@ finish:
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void boostPriority(void)
|
||||||
|
{
|
||||||
|
typedef enum _D3DKMT_SCHEDULINGPRIORITYCLASS
|
||||||
|
{
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_IDLE,
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_BELOW_NORMAL,
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_NORMAL,
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_ABOVE_NORMAL,
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_HIGH,
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME
|
||||||
|
}
|
||||||
|
D3DKMT_SCHEDULINGPRIORITYCLASS;
|
||||||
|
typedef NTSTATUS WINAPI (*PD3DKMTSetProcessSchedulingPriorityClass)
|
||||||
|
(HANDLE, D3DKMT_SCHEDULINGPRIORITYCLASS);
|
||||||
|
|
||||||
|
HMODULE gdi32 = GetModuleHandleA("GDI32");
|
||||||
|
if (!gdi32)
|
||||||
|
return;
|
||||||
|
|
||||||
|
PD3DKMTSetProcessSchedulingPriorityClass fn =
|
||||||
|
(PD3DKMTSetProcessSchedulingPriorityClass)
|
||||||
|
GetProcAddress(gdi32, "D3DKMTSetProcessSchedulingPriorityClass");
|
||||||
|
|
||||||
|
if (!fn)
|
||||||
|
return;
|
||||||
|
|
||||||
|
if (FAILED(fn(GetCurrentProcess(), D3DKMT_SCHEDULINGPRIORITYCLASS_REALTIME)))
|
||||||
|
{
|
||||||
|
DEBUG_WARN("Failed to set realtime GPU priority.");
|
||||||
|
DEBUG_INFO("This is not a failure, please do not report this as an issue.");
|
||||||
|
DEBUG_INFO("To fix this, install and run the Looking Glass host as a service.");
|
||||||
|
DEBUG_INFO("looking-glass-host.exe InstallService");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
bool app_init(void)
|
bool app_init(void)
|
||||||
{
|
{
|
||||||
const char * logFile = option_get_string("os", "logFile" );
|
const char * logFile = option_get_string("os", "logFile" );
|
||||||
@ -490,6 +525,9 @@ bool app_init(void)
|
|||||||
// get the performance frequency for spinlocks
|
// get the performance frequency for spinlocks
|
||||||
QueryPerformanceFrequency(&app.perfFreq);
|
QueryPerformanceFrequency(&app.perfFreq);
|
||||||
|
|
||||||
|
// try to boost the scheduler priority
|
||||||
|
boostPriority();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user