mirror of
https://github.com/gnif/LookingGlass.git
synced 2026-02-16 23:59:47 +00:00
Compare commits
8 Commits
frame-timi
...
Release/B6
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
188f25c6bf | ||
|
|
8619f787b9 | ||
|
|
60ac03ebaf | ||
|
|
e1ebde3cd2 | ||
|
|
f519904c38 | ||
|
|
fa6f1abaac | ||
|
|
875242fe15 | ||
|
|
20b5957999 |
@@ -65,15 +65,30 @@ static const struct xdg_surface_listener xdgSurfaceListener = {
|
|||||||
static void xdgToplevelConfigure(void * data, struct xdg_toplevel * xdgToplevel,
|
static void xdgToplevelConfigure(void * data, struct xdg_toplevel * xdgToplevel,
|
||||||
int32_t width, int32_t height, struct wl_array * states)
|
int32_t width, int32_t height, struct wl_array * states)
|
||||||
{
|
{
|
||||||
wlWm.width = width;
|
wlWm.width = width;
|
||||||
wlWm.height = height;
|
wlWm.height = height;
|
||||||
wlWm.fullscreen = false;
|
wlWm.fullscreen = false;
|
||||||
|
wlWm.floating = true;
|
||||||
|
|
||||||
enum xdg_toplevel_state * state;
|
enum xdg_toplevel_state * state;
|
||||||
wl_array_for_each(state, states)
|
wl_array_for_each(state, states)
|
||||||
{
|
{
|
||||||
if (*state == XDG_TOPLEVEL_STATE_FULLSCREEN)
|
switch (*state)
|
||||||
|
{
|
||||||
|
case XDG_TOPLEVEL_STATE_FULLSCREEN:
|
||||||
wlWm.fullscreen = true;
|
wlWm.fullscreen = true;
|
||||||
|
// fallthrough
|
||||||
|
case XDG_TOPLEVEL_STATE_MAXIMIZED:
|
||||||
|
case XDG_TOPLEVEL_STATE_TILED_LEFT:
|
||||||
|
case XDG_TOPLEVEL_STATE_TILED_RIGHT:
|
||||||
|
case XDG_TOPLEVEL_STATE_TILED_TOP:
|
||||||
|
case XDG_TOPLEVEL_STATE_TILED_BOTTOM:
|
||||||
|
wlWm.floating = false;
|
||||||
|
break;
|
||||||
|
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -156,5 +171,14 @@ void waylandMinimize(void)
|
|||||||
|
|
||||||
void waylandShellResize(int w, int h)
|
void waylandShellResize(int w, int h)
|
||||||
{
|
{
|
||||||
//TODO: Implement resize for XDG.
|
if (!wlWm.floating)
|
||||||
|
return;
|
||||||
|
|
||||||
|
wlWm.width = w;
|
||||||
|
wlWm.height = h;
|
||||||
|
xdg_surface_set_window_geometry(wlWm.xdgSurface, 0, 0, w, h);
|
||||||
|
|
||||||
|
wlWm.needsResize = true;
|
||||||
|
app_invalidateWindow(true);
|
||||||
|
waylandStopWaitFrame();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -112,6 +112,7 @@ struct WaylandDSState
|
|||||||
bool fractionalScale;
|
bool fractionalScale;
|
||||||
bool needsResize;
|
bool needsResize;
|
||||||
bool fullscreen;
|
bool fullscreen;
|
||||||
|
bool floating;
|
||||||
uint32_t resizeSerial;
|
uint32_t resizeSerial;
|
||||||
bool configured;
|
bool configured;
|
||||||
bool warpSupport;
|
bool warpSupport;
|
||||||
|
|||||||
@@ -1433,7 +1433,8 @@ restart:
|
|||||||
initialSpiceEnable = 0;
|
initialSpiceEnable = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata);
|
status = lgmpClientSessionInit(g_state.lgmp, &udataSize, (uint8_t **)&udata,
|
||||||
|
NULL);
|
||||||
switch(status)
|
switch(status)
|
||||||
{
|
{
|
||||||
case LGMP_OK:
|
case LGMP_OK:
|
||||||
|
|||||||
@@ -316,43 +316,55 @@ static bool nvfbc_init(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
int adapterIndex = option_get_int("nvfbc", "adapterIndex");
|
int adapterIndex = option_get_int("nvfbc", "adapterIndex");
|
||||||
// NOTE: Calling this on hardware that doesn't support NvFBC such as GeForce
|
|
||||||
// causes a substantial performance pentalty even if it fails! As such we only
|
bool created = false;
|
||||||
// attempt NvFBC as a last resort, or if configured via the app:capture
|
for(int retry = 0; retry < 2; ++retry)
|
||||||
// option.
|
|
||||||
if (adapterIndex < 0)
|
|
||||||
{
|
{
|
||||||
IDirect3D9 * d3d = Direct3DCreate9(D3D_SDK_VERSION);
|
// NOTE: Calling this on hardware that doesn't support NvFBC such as GeForce
|
||||||
int adapterCount = IDirect3D9_GetAdapterCount(d3d);
|
// causes a substantial performance pentalty even if it fails! As such we only
|
||||||
for(int i = 0; i < adapterCount; ++i)
|
// attempt NvFBC as a last resort, or if configured via the app:capture
|
||||||
{
|
// option.
|
||||||
D3DADAPTER_IDENTIFIER9 ident;
|
|
||||||
IDirect3D9_GetAdapterIdentifier(d3d, i, 0, &ident);
|
|
||||||
if (ident.VendorId != 0x10DE)
|
|
||||||
continue;
|
|
||||||
|
|
||||||
if (NvFBCToSysCreate(i, privData, privDataLen, &this->nvfbc,
|
|
||||||
&this->maxWidth, &this->maxHeight))
|
|
||||||
{
|
|
||||||
adapterIndex = i;
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
IDirect3D9_Release(d3d);
|
|
||||||
|
|
||||||
if (adapterIndex < 0)
|
if (adapterIndex < 0)
|
||||||
{
|
{
|
||||||
free(privData);
|
IDirect3D9 * d3d = Direct3DCreate9(D3D_SDK_VERSION);
|
||||||
return false;
|
int adapterCount = IDirect3D9_GetAdapterCount(d3d);
|
||||||
|
for(int i = 0; i < adapterCount; ++i)
|
||||||
|
{
|
||||||
|
D3DADAPTER_IDENTIFIER9 ident;
|
||||||
|
IDirect3D9_GetAdapterIdentifier(d3d, i, 0, &ident);
|
||||||
|
if (ident.VendorId != 0x10DE)
|
||||||
|
continue;
|
||||||
|
|
||||||
|
if (NvFBCToSysCreate(i, privData, privDataLen, &this->nvfbc,
|
||||||
|
&this->maxWidth, &this->maxHeight))
|
||||||
|
{
|
||||||
|
adapterIndex = i;
|
||||||
|
created = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
IDirect3D9_Release(d3d);
|
||||||
}
|
}
|
||||||
}
|
else
|
||||||
else
|
|
||||||
if (!NvFBCToSysCreate(adapterIndex, privData, privDataLen, &this->nvfbc, &this->maxWidth, &this->maxHeight))
|
|
||||||
{
|
{
|
||||||
free(privData);
|
if (!NvFBCToSysCreate(adapterIndex, privData, privDataLen, &this->nvfbc, &this->maxWidth, &this->maxHeight))
|
||||||
return false;
|
continue;
|
||||||
|
created = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (created)
|
||||||
|
break;
|
||||||
|
|
||||||
|
//1000ms delay before retry
|
||||||
|
nsleep(1000000000);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!created)
|
||||||
|
{
|
||||||
|
free(privData);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
int diffRes = option_get_int("nvfbc", "diffRes");
|
int diffRes = option_get_int("nvfbc", "diffRes");
|
||||||
enum DiffMapBlockSize blockSize;
|
enum DiffMapBlockSize blockSize;
|
||||||
NvFBCGetDiffMapBlockSize(diffRes, &blockSize, &this->diffShift, privData, privDataLen);
|
NvFBCGetDiffMapBlockSize(diffRes, &blockSize, &this->diffShift, privData, privDataLen);
|
||||||
|
|||||||
@@ -526,7 +526,13 @@ bool app_init(void)
|
|||||||
|
|
||||||
// redirect stderr to a file
|
// redirect stderr to a file
|
||||||
if (logFile && strcmp(logFile, "stderr") != 0)
|
if (logFile && strcmp(logFile, "stderr") != 0)
|
||||||
freopen(logFile, "a", stderr);
|
{
|
||||||
|
DEBUG_INFO("Logs will be written to: %s", logFile);
|
||||||
|
DEBUG_INFO("Please see there for any further information");
|
||||||
|
|
||||||
|
if (!freopen(logFile, "a", stderr))
|
||||||
|
DEBUG_WARN("Failed to open log file, will log to stderr");
|
||||||
|
}
|
||||||
|
|
||||||
// always flush stderr
|
// always flush stderr
|
||||||
setbuf(stderr, NULL);
|
setbuf(stderr, NULL);
|
||||||
|
|||||||
@@ -748,7 +748,7 @@ int app_main(int argc, char * argv[])
|
|||||||
if (option_load(configFile))
|
if (option_load(configFile))
|
||||||
DEBUG_INFO("Configuration file loaded");
|
DEBUG_INFO("Configuration file loaded");
|
||||||
else
|
else
|
||||||
DEBUG_INFO("Configuration file not found or invalid");
|
DEBUG_INFO("Configuration file not found or invalid, continuing anyway...");
|
||||||
|
|
||||||
// parse the command line arguments
|
// parse the command line arguments
|
||||||
if (!option_parse(argc, argv))
|
if (!option_parse(argc, argv))
|
||||||
@@ -901,19 +901,20 @@ int app_main(int argc, char * argv[])
|
|||||||
LG_UNLOCK(app.pointerLock);
|
LG_UNLOCK(app.pointerLock);
|
||||||
}
|
}
|
||||||
|
|
||||||
const uint64_t now = microtime();
|
const uint64_t delta = microtime() - previousFrameTime;
|
||||||
const uint64_t delta = now - previousFrameTime;
|
|
||||||
if (delta < throttleUs)
|
if (delta < throttleUs)
|
||||||
{
|
{
|
||||||
nsleep((throttleUs - delta) * 1000);
|
const uint64_t us = throttleUs - delta;
|
||||||
previousFrameTime = microtime();
|
// only delay if the time is reasonable
|
||||||
|
if (us > 1000)
|
||||||
|
nsleep(us * 1000);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
previousFrameTime = now;
|
|
||||||
|
|
||||||
|
const uint64_t captureStart = microtime();
|
||||||
switch(iface->capture())
|
switch(iface->capture())
|
||||||
{
|
{
|
||||||
case CAPTURE_RESULT_OK:
|
case CAPTURE_RESULT_OK:
|
||||||
|
previousFrameTime = captureStart;
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case CAPTURE_RESULT_TIMEOUT:
|
case CAPTURE_RESULT_TIMEOUT:
|
||||||
|
|||||||
2
obs/lg.c
2
obs/lg.c
@@ -421,7 +421,7 @@ static void lgUpdate(void * data, obs_data_t * settings)
|
|||||||
|
|
||||||
usleep(200000);
|
usleep(200000);
|
||||||
|
|
||||||
if (lgmpClientSessionInit(this->lgmp, &udataSize, (uint8_t **)&udata)
|
if (lgmpClientSessionInit(this->lgmp, &udataSize, (uint8_t **)&udata, NULL)
|
||||||
!= LGMP_OK)
|
!= LGMP_OK)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|||||||
Submodule repos/LGMP updated: 66ac3bae0b...1b170ad8d7
Reference in New Issue
Block a user