mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 13:37:22 +00:00
[host] nvfbc: add DwmFlush here too as it makes a large difference
This commit is contained in:
parent
443f98d2fa
commit
b058cbe9fe
@ -33,6 +33,7 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <stdatomic.h>
|
#include <stdatomic.h>
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
|
#include <dwmapi.h>
|
||||||
|
|
||||||
#include <NvFBC/nvFBC.h>
|
#include <NvFBC/nvFBC.h>
|
||||||
#include "wrapper.h"
|
#include "wrapper.h"
|
||||||
@ -53,6 +54,7 @@ struct iface
|
|||||||
NvFBCHandle nvfbc;
|
NvFBCHandle nvfbc;
|
||||||
|
|
||||||
bool seperateCursor;
|
bool seperateCursor;
|
||||||
|
bool dwmFlush;
|
||||||
CaptureGetPointerBuffer getPointerBufferFn;
|
CaptureGetPointerBuffer getPointerBufferFn;
|
||||||
CapturePostPointerBuffer postPointerBufferFn;
|
CapturePostPointerBuffer postPointerBufferFn;
|
||||||
LGThread * pointerThread;
|
LGThread * pointerThread;
|
||||||
@ -147,6 +149,13 @@ static void nvfbc_initOptions(void)
|
|||||||
.type = OPTION_TYPE_INT,
|
.type = OPTION_TYPE_INT,
|
||||||
.value.x_int = 0
|
.value.x_int = 0
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.module = "nvfbc",
|
||||||
|
.name = "dwmFlush",
|
||||||
|
.description = "Use DwmFlush to sync the capture to the windows presentation inverval",
|
||||||
|
.type = OPTION_TYPE_BOOL,
|
||||||
|
.value.x_bool = true
|
||||||
|
},
|
||||||
{0}
|
{0}
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -163,6 +172,7 @@ static bool nvfbc_create(
|
|||||||
this = calloc(1, sizeof(*this));
|
this = calloc(1, sizeof(*this));
|
||||||
|
|
||||||
this->seperateCursor = option_get_bool("nvfbc", "decoupleCursor");
|
this->seperateCursor = option_get_bool("nvfbc", "decoupleCursor");
|
||||||
|
this->dwmFlush = option_get_bool("nvfbc", "dwmFlush" );
|
||||||
this->getPointerBufferFn = getPointerBufferFn;
|
this->getPointerBufferFn = getPointerBufferFn;
|
||||||
this->postPointerBufferFn = postPointerBufferFn;
|
this->postPointerBufferFn = postPointerBufferFn;
|
||||||
|
|
||||||
@ -339,6 +349,12 @@ static void nvfbc_free(void)
|
|||||||
|
|
||||||
static CaptureResult nvfbc_capture(void)
|
static CaptureResult nvfbc_capture(void)
|
||||||
{
|
{
|
||||||
|
// this is a bit of a hack as it causes this thread to block until the next
|
||||||
|
// present keeping us locked with the refresh rate of the monitor being
|
||||||
|
// captured
|
||||||
|
if (this->dwmFlush)
|
||||||
|
DwmFlush();
|
||||||
|
|
||||||
getDesktopSize(&this->width, &this->height);
|
getDesktopSize(&this->width, &this->height);
|
||||||
NvFBCFrameGrabInfo grabInfo;
|
NvFBCFrameGrabInfo grabInfo;
|
||||||
CaptureResult result = NvFBCToSysCapture(
|
CaptureResult result = NvFBCToSysCapture(
|
||||||
|
Loading…
Reference in New Issue
Block a user