MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / ui_UpdateWindows

Function ui_UpdateWindows

ui/UISystem.cpp:447–455  ·  view source on GitHub ↗

updates all visible windows.

Source from the content-addressed store, hash-verified

445}
446// updates all visible windows.
447void ui_UpdateWindows() {
448 tUIWindowNode *wndnode = UIWindowList;
449 while (wndnode) {
450 if (wndnode->next == NULL) {
451 }
452 wndnode->wnd->Render();
453 wndnode = wndnode->next;
454 }
455}
456// do cursor display and update
457void ui_DoCursor() {
458 ui_StartDraw(0, 0, UI_screen_width, UI_screen_height);

Callers 1

ui_DoFrameFunction · 0.85

Calls 1

RenderMethod · 0.45

Tested by

no test coverage detected