-
-
Notifications
You must be signed in to change notification settings - Fork 10.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another power saving mode. #3124
Conversation
fe19061
to
ee71810
Compare
// Setup Dear ImGui context | ||
IMGUI_CHECKVERSION(); | ||
ImGui::CreateContext(); | ||
|
||
ImGuiIO& io = ImGui::GetIO(); (void)io; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why moving those CreateContext lines?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
It's because ShowWindow function will call into wmproc, which in turn needs context for most of the messages (WM_SIZE in particular). Thus I moved context creation to before ShowWindow.
Regards,
It feels that it'd be simpler and more portable to have all those check done by core imgui (e.g. |
Would you please be more specific about which checks you refer to ? Thanks |
DisplaySize change, MousePos/Buttons/Wheel change, Gamepad change, Keyboard changes, Character Inputs. It feels that we could come up with a design that would put less strain on the specific back-end by actively doing a compare in e.g. I haven't dug very deep into this topic (so may be very wrong) but this is my intuition. |
Ideally yes, I agree - it's better be ImGui answering the question "has something changed big enough to require a redraw". In this case ImGui can be more aggressive on skipping redraw with some extra logic, for instance, if the mouse is staying within same element ( a button for instance), then you don't have to redraw on every mouse move like it does now.
It can be whole new IO structure as you suggest since indeed memcmp'ing 1kb on input is not a big deal. But it would be very nice to be able to accumulate updates within this structure independently with main drawing because there's a use case of running message loop in a separate thread (as I do atm.) |
You can skip step 2 sergeyn. Just put all that logic into the event loop, seems much simpler to me. No events, no rendering, just as responsive, much lower CPU usage. I just wrote this for the SDL example and it works fine for me :
|
Hi @joeslay ! This solution has the drawback that nothing gets drawn on the screen if there is no user input. This is bad for everything that has something dynamic such as a movie player or even the Plot Widgets from imgui_demo. |
Yeah, you'd have to manage dynamic widgets. |
ee71810
to
b64e123
Compare
0c1e5bd
to
bb6a60b
Compare
8b83e0a
to
d735066
Compare
b3b85d8
to
0755767
Compare
c817acb
to
8d39063
Compare
I'll bring it back to life in the near future.
…On Thu, Mar 3, 2022 at 9:18 AM Ryan H ***@***.***> wrote:
This looked promising, but its 2 years behind. Any updates? I really like
ImGUI's simplicity and I would like to use it to make a desktop app that
doesn't need immediate mode
—
Reply to this email directly, view it on GitHub
<#3124 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAFDDOXBG2FTGQKGHXS2NV3U6BYTZANCNFSM4MHBP75A>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
b64e123
to
6fae296
Compare
I've accidentally closed this one, created another one instead: #5116 |
Hi, this is alternative implementation of PR #2749 . I'm in similiar situation where I don't need to render UI all the time, just rendering updates when they happen will do. The strategy I chose is it to report for each non-static widget a time in the future relative to current frame when it'll end up rendering something different. Then platform code using this information may choose to sleep for specified period of time. I've updated win32 dx12 sample to demonstrate this behavoiur and made text cursor blinking report it's time when it's goint to blink. Other examples which I didn't touch will work same way as they were before the change.