I'm currently trying to render a couple of webpages with dear ImGui I looked everywhere but couldn't find it so here I am. And I would like to be able to load https://google.com in Window1 per example.
Thank you for your time :)
#include "App.h"
#include "imgui.h"
namespace App {
void Application() {
ImGui::Begin("Window1");
ImGui::End();
ImGui::Begin("Window2");
ImGui::End();
ImGui::Begin("Window3");
ImGui::End();
}
}