MCPcopy Create free account

hub / github.com/andrewchilicki/LumonMDR / functions

Functions2,571 in github.com/andrewchilicki/LumonMDR

↓ 1 callersFunctionstbtt__sized_triangle_area
external/imgui/imstb_truetype.h:3082
↓ 1 callersFunctionstbtt__solve_cubic
x^3 + a*x^2 + b*x + c = 0
external/imgui/imstb_truetype.h:4552
↓ 1 callersFunctionstbtt__sort_edges
external/imgui/imstb_truetype.h:3487
↓ 1 callersFunctionstbtt__sort_edges_ins_sort
external/imgui/imstb_truetype.h:3407
↓ 1 callersFunctionstbtt__sort_edges_quicksort
external/imgui/imstb_truetype.h:3425
↓ 1 callersFunctionstbtt__tesselate_cubic
external/imgui/imstb_truetype.h:3583
↓ 1 callersFunctionstbtt__tesselate_curve
tessellate until threshold p is happy... @TODO warped to compensate for non-linear stretching
external/imgui/imstb_truetype.h:3563
↓ 1 callersFunctionstring
external/nlohmann/json.hpp:6854
↓ 1 callersFunctionto_cbor
@brief create a CBOR serialization of a given JSON value @sa https://json.nlohmann.me/api/basic_json/to_cbor/
external/nlohmann/json.hpp:23548
↓ 1 callersFunctionto_json_tuple_impl
external/nlohmann/json.hpp:5780
↓ 1 callersMethodtriggerLoadAnimation
src/UI/Widgets/NumbersPanel.cpp:79
↓ 1 callersFunctiontype
@brief return the type of the JSON value (explicit) @sa https://json.nlohmann.me/api/basic_json/type/
external/nlohmann/json.hpp:20596
↓ 1 callersFunctionunescape
external/nlohmann/json.hpp:3005
↓ 1 callersMethodupdatePos
src/UI/Widgets/NumbersPanel.cpp:438
↓ 1 callersFunctionvalue
! @brief return the value of an iterator @pre The iterator is initialized; i.e. `m_object != nullptr`. */
external/nlohmann/json.hpp:13606
MethodAcceptDragDropPayload
external/imgui/imgui.cpp:14122
MethodActivateItemByID
external/imgui/imgui.cpp:8358
MethodAddCallback
external/imgui/imgui_draw.cpp:490
MethodAddChar
Set bit n in the array
external/imgui/imgui.h:3286
MethodAddConcavePolyFilled
Use ear-clipping algorithm to triangulate a simple polygon (no self-interaction, no holes). (Reminder: we don't perform any coarse clipping/culling in
external/imgui/imgui_draw.cpp:1978
MethodAddContextHook
No specific ordering/dependency support, will see as needed
external/imgui/imgui.cpp:4228
MethodAddConvexPolyFilled
- We intentionally avoid using ImVec2 and its math operators here to reduce cost to a minimum for debug/non-inlined builds. - Filled shapes must alway
external/imgui/imgui_draw.cpp:1021
MethodAddCustomRectFontGlyph
external/imgui/imgui_draw.cpp:2727
MethodAddDrawList
external/imgui/imgui_draw.cpp:2273
MethodAddDrawListToDrawDataEx
Important: 'out_list' is generally going to be draw_data->CmdLists, but may be another temporary list as long at it is expected that the result will b
external/imgui/imgui_draw.cpp:2228
MethodAddFont
external/imgui/imgui_draw.cpp:2571
MethodAddFontDefault
Load embedded ProggyClean.ttf at size 13, disable oversampling
external/imgui/imgui_draw.cpp:2630
MethodAddFontFromMemoryCompressedBase85TTF
external/imgui/imgui_draw.cpp:2706
MethodAddFontFromMemoryCompressedTTF
external/imgui/imgui_draw.cpp:2694
MethodAddFontFromMemoryTTF
NB: Transfer ownership of 'ttf_data' to ImFontAtlas, unless font_cfg_template->FontDataOwnedByAtlas == false. Owned TTF buffer will be deleted after B
external/imgui/imgui_draw.cpp:2680
MethodAddImageQuad
external/imgui/imgui_draw.cpp:1715
MethodAddImageRounded
external/imgui/imgui_draw.cpp:1731
MethodAddInputCharacterUTF16
UTF16 strings use surrogate pairs to encode codepoints >= 0x10000, so we should save the high surrogate.
external/imgui/imgui.cpp:1500
MethodAddInputCharactersUTF8
external/imgui/imgui.cpp:1534
MethodAddItems
external/imgui/imgui_demo.cpp:10110
MethodAddKeyAnalogEvent
Queue a new key down/up event. - ImGuiKey key: Translated key (as in, generally ImGuiKey_A matches the key end-user would use to emit an 'A' cha
external/imgui/imgui.cpp:1622
MethodAddQuad
external/imgui/imgui_draw.cpp:1495
MethodAddRanges
external/imgui/imgui_draw.cpp:3651
MethodAddRemapChar
external/imgui/imgui_draw.cpp:3883
MethodAddSettingsHandler
external/imgui/imgui.cpp:14507
MethodAlignTextToFramePadding
external/imgui/imgui_widgets.cpp:1532
MethodApplySelectionRequests
external/imgui/imgui_demo.cpp:3072
MethodApplySelectionRequests
Apply multi-selection requests
external/imgui/imgui_demo.cpp:3622
MethodArrowButton
external/imgui/imgui_widgets.cpp:834
MethodArrowButtonEx
external/imgui/imgui_widgets.cpp:806
MethodAspectRatio
Helper functions to demonstrate programmatic constraints FIXME: This doesn't take account of decoration size (e.g. title bar), library should make thi
external/imgui/imgui_demo.cpp:9185
MethodBadGroup
libs/Numbers/Number.h:8
MethodBasicPerlinNoise
external/perlin-noise/PerlinNoise.hpp:411
MethodBeginBoxSelect
external/imgui/imgui_widgets.cpp:7381
MethodBeginChild
Prior to v1.90 2023/10/16, the BeginChild() function took a 'bool border = false' parameter instead of 'ImGuiChildFlags child_flags = 0'. ImGuiChildFl
external/imgui/imgui.cpp:5977
MethodBeginChildEx
external/imgui/imgui.cpp:5988
FunctionBeginChildFrame
Content boundaries max for the window (roughly (0,0)+Size-Scroll), in window-local coordinates. You should never need this. Always use GetCursorScreen
external/imgui/imgui.h:3602
MethodBeginColumns
external/imgui/imgui_tables.cpp:4268
MethodBeginCombo
external/imgui/imgui_widgets.cpp:1824
MethodBeginComboPopup
external/imgui/imgui_widgets.cpp:1902
MethodBeginComboPreview
Call directly after the BeginCombo/EndCombo block. The preview is designed to only host non-interactive elements (Experimental, see GitHub issues: #16
external/imgui/imgui_widgets.cpp:1976
MethodBeginDisabled
BeginDisabled()/EndDisabled() - Those can be nested but it cannot be used to enable an already disabled section (a single BeginDisabled(true) in the s
external/imgui/imgui.cpp:7853
MethodBeginDisabledOverrideReenable
Could have been called BeginDisabledDisable() but it didn't want to be award nominated for most awkward function name. Ideally we would use a shared e
external/imgui/imgui.cpp:7888
MethodBeginDragDropSource
When this returns true you need to: a) call SetDragDropPayload() exactly once, b) you may render the payload visual/description, c) call EndDragDropSo
external/imgui/imgui.cpp:13878
MethodBeginDragDropTarget
We don't use BeginDragDropTargetCustom() and duplicate its code because: 1) we use LastItemData's ImGuiItemStatusFlags_HoveredRect which handles items
external/imgui/imgui.cpp:14085
MethodBeginDragDropTargetCustom
external/imgui/imgui.cpp:14057
MethodBeginErrorTooltip
Pseudo-tooltip. Follow mouse until CTRL is held. When CTRL is held we lock position, allowing to click it.
external/imgui/imgui.cpp:10411
MethodBeginGroup
Lock horizontal starting position + capture group bounding box into one "item" (so you can use IsItemHovered() or layout primitives such as SameLine()
external/imgui/imgui.cpp:10883
MethodBeginItemTooltip
external/imgui/imgui.cpp:11229
MethodBeginListBox
This is essentially a thin wrapper to using BeginChild/EndChild with the ImGuiChildFlags_FrameStyle flag for stylistic changes + displaying a label. T
external/imgui/imgui_widgets.cpp:8247
MethodBeginMainMenuBar
external/imgui/imgui_widgets.cpp:8735
MethodBeginMenu
external/imgui/imgui_widgets.cpp:9005
MethodBeginMenuBar
FIXME: Provided a rectangle perhaps e.g. a BeginMenuBarEx() could be used anywhere.. Currently the main responsibility of this function being to setup
external/imgui/imgui_widgets.cpp:8615
MethodBeginMenuEx
external/imgui/imgui_widgets.cpp:8793
MethodBeginMultiSelect
Return ImGuiMultiSelectIO structure. Lifetime: don't hold on ImGuiMultiSelectIO* pointers over multiple frames or past any subsequent call to BeginMul
external/imgui/imgui_widgets.cpp:7507
MethodBeginPopup
external/imgui/imgui.cpp:11640
MethodBeginPopupContextItem
This is a helper to handle the simplest case of associating one named popup to one given widget. - To create a popup associated to the last item, you
external/imgui/imgui.cpp:11741
MethodBeginPopupContextVoid
external/imgui/imgui.cpp:11769
MethodBeginPopupContextWindow
external/imgui/imgui.cpp:11755
MethodBeginPopupEx
Attention! BeginPopup() adds default flags when calling BeginPopupEx()!
external/imgui/imgui.cpp:11616
MethodBeginPopupModal
If 'p_open' is specified for a modal popup window, the popup will have a regular close button which will close the popup. Note that popup visibility s
external/imgui/imgui.cpp:11657
MethodBeginTabBar
external/imgui/imgui_widgets.cpp:9210
MethodBeginTabBarEx
external/imgui/imgui_widgets.cpp:9228
MethodBeginTabItem
external/imgui/imgui_widgets.cpp:9911
MethodBeginTable
Read about "TABLE SIZING" at the top of this file.
external/imgui/imgui_tables.cpp:309
MethodBeginTableEx
external/imgui/imgui_tables.cpp:315
MethodBeginTooltip
external/imgui/imgui.cpp:11224
MethodBeginTooltipEx
external/imgui/imgui.cpp:11236
MethodBeginTooltipHidden
external/imgui/imgui.cpp:13863
MethodBeginViewportSideBar
Important: calling order matters! FIXME: Somehow overlapping with docking tech. FIXME: The "rect-cut" aspect of this could be formalized into a lower-
external/imgui/imgui_widgets.cpp:8700
MethodBringWindowToDisplayBack
external/imgui/imgui.cpp:12062
MethodBringWindowToDisplayBehind
external/imgui/imgui.cpp:12076
MethodBringWindowToDisplayFront
Note technically focus related but rather adjacent and close to BringWindowToFocusFront()
external/imgui/imgui.cpp:12047
MethodBringWindowToFocusFront
external/imgui/imgui.cpp:12025
MethodBuild
external/imgui/imgui_draw.cpp:2776
MethodBuildEars
external/imgui/imgui_draw.cpp:1859
MethodBuildNodes
external/imgui/imgui_draw.cpp:1833
MethodBuildRanges
external/imgui/imgui_draw.cpp:3658
MethodBuildReflexes
external/imgui/imgui_draw.cpp:1847
MethodBullet
external/imgui/imgui_widgets.cpp:1387
MethodBulletText
external/imgui/imgui_widgets.cpp:377
MethodBulletTextV
Text with a little bullet aligned to the typical tree node.
external/imgui/imgui_widgets.cpp:386
MethodButton
external/imgui/imgui_widgets.cpp:763
MethodButtonBehavior
- FIXME: For refactor we could output flags, incl mouse hovered vs nav keyboard vs nav triggered etc. And better standardize how widgets use 'GetColor
external/imgui/imgui_widgets.cpp:499
MethodButtonEx
external/imgui/imgui_widgets.cpp:722
← previousnext →1,001–1,100 of 2,571, ranked by callers