Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/dwm/ext/imgui.ts>imgui.endFrame

Deno Window Manager: Cross-platform window creation and management
Latest
function imgui.endFrame
import { imgui } from "https://deno.land/x/dwm@0.3.6/ext/imgui.ts";
const { endFrame } = imgui;

ends the Dear ImGui frame. automatically called by Render(). If you don't need to render data (skipping rendering) you may call EndFrame() without Render()... but you'll have wasted CPU already! If you don't need to render, better to not create any windows and not call NewFrame() at all!