Coder Social home page Coder Social logo

Comments (5)

ocornut avatar ocornut commented on May 31, 2024

Can you clarify what you mean by flickering by capturing a video of it?

from imgui.

JTtNinjaCode avatar JTtNinjaCode commented on May 31, 2024

https://youtu.be/FnY64d0JtK8?si=89DVGQ4OHircR3Z4

from imgui.

ocornut avatar ocornut commented on May 31, 2024

It seems to be because RenderPlatformWindowsDefault() changes the current GL context:

if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable) 
{
   ImGui::UpdatePlatformWindows();
   ImGui::RenderPlatformWindowsDefault();
}

And immediately after you are swapping the current GL context which is the wrong context:

glfwSwapBuffers(window);

If you look at our example, we are doing:

// Update and Render additional Platform Windows
// (Platform functions may change the current OpenGL context, so we save/restore it to make it easier to paste this code elsewhere.
//  For this specific demo app we could also call glfwMakeContextCurrent(window) directly)
if (io.ConfigFlags & ImGuiConfigFlags_ViewportsEnable)
{
    GLFWwindow* backup_current_context = glfwGetCurrentContext();
    ImGui::UpdatePlatformWindows();
    ImGui::RenderPlatformWindowsDefault();
    glfwMakeContextCurrent(backup_current_context);
}

glfwSwapBuffers(window);

You can also store the main GL context and glfwMakeContextCurrent() on it after RenderPlatformWindowsDefault().

from imgui.

JTtNinjaCode avatar JTtNinjaCode commented on May 31, 2024

oh, it works!
Have you ever thought about recording some tutorial videos? Specifically about reading the imgui code and some design principles, etc. I really like this repo and hope there will be a way to learn more.

from imgui.

ocornut avatar ocornut commented on May 31, 2024

There is a Getting Started guide there:
https://github.com/ocornut/imgui/wiki/Getting-Started
And many tutorial videos on the internet (although maybe IMHO are of dubious quality, people making things more complicated for themselves).

And i'm trying to better populate the Wiki over time but there's so much to do.

Glad it solved your problem!

from imgui.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.