[host] capture: stop sending DPI information

The client doesn't need DPI information anymore, so there is no point
fetching it.
This commit is contained in:
Quantum
2021-07-17 02:21:26 -04:00
committed by Geoffrey McRae
parent e0c9a71cd8
commit 9ab85fd0b8
5 changed files with 3 additions and 32 deletions

View File

@@ -165,11 +165,6 @@ static void xcb_free(void)
this = NULL;
}
static unsigned int xcb_getMouseScale(void)
{
return 100;
}
static CaptureResult xcb_capture(void)
{
assert(this);
@@ -243,7 +238,6 @@ struct CaptureInterface Capture_XCB =
.init = xcb_init,
.deinit = xcb_deinit,
.free = xcb_free,
.getMouseScale = xcb_getMouseScale,
.capture = xcb_capture,
.waitFrame = xcb_waitFrame,
.getFrame = xcb_getFrame