stub out demon/fontprovider so we can build debugger

This commit is contained in:
Ryan Fleury
2025-05-10 14:28:14 -07:00
parent b52e3be5ae
commit 3fd1f9d255
10 changed files with 86 additions and 15 deletions
+1 -1
View File
@@ -277,7 +277,7 @@ os_client_rect_from_window(OS_Handle handle)
OS_LNX_Window *w = (OS_LNX_Window *)handle.u64[0];
XWindowAttributes atts = {0};
Status s = XGetWindowAttributes(os_lnx_gfx_state->display, w->window, &atts);
Rng2F32 result = r2f32p((F32)atts.x, (F32)atts.y, (F32)atts.x + (F32)atts.width, (F32)atts.y + (F32)atts.height);
Rng2F32 result = r2f32p(0, 0, (F32)atts.width, (F32)atts.height);
return result;
}