Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

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

Deno Window Manager: Cross-platform window creation and management
Go to Latest
function imgui.endFrame
import { imgui } from "https://deno.land/x/dwm@0.3.4/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!