From a7cad09f866c5c993d9950e562e168f778f4d85c Mon Sep 17 00:00:00 2001 From: omar Date: Tue, 29 Mar 2022 15:21:06 +0200 Subject: [PATCH] Updated About the IMGUI paradigm (markdown) --- About-the-IMGUI-paradigm.md | 1 + 1 file changed, 1 insertion(+) diff --git a/About-the-IMGUI-paradigm.md b/About-the-IMGUI-paradigm.md index 5a5a184..894dd52 100644 --- a/About-the-IMGUI-paradigm.md +++ b/About-the-IMGUI-paradigm.md @@ -75,6 +75,7 @@ _TODO_ ### Modeless write-up +March 2022: https://news.ycombinator.com/item?id=30814797 _"Immediate mode is a style of API where important state is kept in user code instead of being retained inside the API implementation. For example, an immediate mode GUI checkbox implementation does not store a boolean value determining whether the checkbox is checked. Instead, user code passes that information as a function parameter whenever the UI needs to be drawn. Even the fact that a checkbox exists on screen is not stored in the GUI library. The checkbox is simply drawn when user code requests it each frame."_