Skip to content

Commit

Permalink
rename sandbox
Browse files Browse the repository at this point in the history
  • Loading branch information
pthom committed Jan 15, 2024
1 parent b7dd1a0 commit be7b462
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 67 deletions.
24 changes: 24 additions & 0 deletions bindings/imgui_bundle/demos_cpp/sandbox/bundle_cpp_sandbox.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// This demo show how we can call ImGui::ErrorCheckEndFrameRecover()
// to recover from errors originating when ImGui::End() is not called (for example when an exception is raised)

#include "hello_imgui.h"
#include "imgui.h"
#include "imgui_internal.h"

void Gui()
{
ImGui::Text("Hello");
ImGui::ShowIDStackToolWindow();
}


int main()
{
HelloImGui::RunnerParams runnerParams;
runnerParams.callbacks.ShowGui = Gui;

//runnerParams.useImGuiTestEngine = true;

HelloImGui::Run(runnerParams);
return 0;
}

This file was deleted.

0 comments on commit be7b462

Please sign in to comment.