Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Sh0ckFR/Universal-Dear-ImGui-Hook
/ functions
Functions
5,040 in github.com/Sh0ckFR/Universal-Dear-ImGui-Hook
⨍
Functions
5,040
◇
Types & classes
6,921
↓ 1 callers
Method
RenderGlyphAndGetInfo
imgui/misc/freetype/imgui_freetype.cpp:307
↓ 1 callers
Method
RenderText
Note: as with every ImDrawList drawing function, this expects that the font atlas texture is bound.
imgui/imgui_draw.cpp:4154
↓ 1 callers
Function
RenderViewportsThumbnails
imgui/imgui.cpp:15331
↓ 1 callers
Function
RequestAdapter
imgui/examples/example_glfw_wgpu/main.cpp:269
↓ 1 callers
Function
RequestDevice
imgui/examples/example_glfw_wgpu/main.cpp:283
↓ 1 callers
Function
SDL_RenderGeometryRaw8BitColor
https://github.com/libsdl-org/SDL/issues/9009
imgui/backends/imgui_impl_sdlrenderer3.cpp:118
↓ 1 callers
Function
STB_TEXTEDIT_MOVEWORDRIGHT_WIN
imgui/imgui_widgets.cpp:4070
↓ 1 callers
Function
SameLineOrWrap
FIXME-LAYOUT: To be done automatically via layout mode once we rework ItemSize/ItemAdd into ItemLayout.
imgui/imgui.cpp:16622
↓ 1 callers
Function
Saturate
imgui/backends/imgui_impl_sdl3.cpp:698
↓ 1 callers
Function
Saturate
imgui/backends/imgui_impl_sdl2.cpp:730
↓ 1 callers
Method
ScaleAllSizes
To scale your entire UI (e.g. if you want your app to use High DPI or generally be DPI aware) you may use this helper function. Scaling the fonts is d
imgui/imgui.cpp:1394
↓ 1 callers
Function
ScaleWindow
imgui/imgui.cpp:14994
↓ 1 callers
Method
SetArenaBasePtr
imgui/imgui_internal.h:675
↓ 1 callers
Function
SetBit
imgui/imgui_internal.h:626
↓ 1 callers
Method
SetBool
imgui/imgui.cpp:2785
↓ 1 callers
Method
SetCircleTessellationMaxError
imgui/imgui_draw.cpp:394
↓ 1 callers
Function
SetWindowActiveForSkipRefresh
imgui/imgui.cpp:7011
↓ 1 callers
Function
SetupDrawListSharedData
Called once a frame. Followed by SetCurrentFont() which sets up the remaining data. FIXME-VIEWPORT: the concept of a single ClipRectFullscreen is not
imgui/imgui.cpp:5150
↓ 1 callers
Function
SetupVulkan
imgui/examples/example_sdl2_vulkan/main.cpp:76
↓ 1 callers
Function
SetupVulkan
imgui/examples/example_sdl3_vulkan/main.cpp:81
↓ 1 callers
Function
SetupVulkan
imgui/examples/example_win32_vulkan/main.cpp:77
↓ 1 callers
Function
SetupVulkan
imgui/examples/example_glfw_vulkan/main.cpp:88
↓ 1 callers
Function
SetupVulkanWindow
All the ImGui_ImplVulkanH_XXX structures/functions are optional helpers used by the demo. Your real engine/app may not use them.
imgui/examples/example_sdl2_vulkan/main.cpp:201
↓ 1 callers
Function
SetupVulkanWindow
All the ImGui_ImplVulkanH_XXX structures/functions are optional helpers used by the demo. Your real engine/app may not use them.
imgui/examples/example_sdl3_vulkan/main.cpp:206
↓ 1 callers
Function
SetupVulkanWindow
All the ImGui_ImplVulkanH_XXX structures/functions are optional helpers used by the demo. Your real engine/app may not use them.
imgui/examples/example_win32_vulkan/main.cpp:202
↓ 1 callers
Function
SetupVulkanWindow
All the ImGui_ImplVulkanH_XXX structures/functions are optional helpers used by the demo. Your real engine/app may not use them.
imgui/examples/example_glfw_vulkan/main.cpp:213
↓ 1 callers
Method
Show
imgui/imgui_demo.cpp:2500
↓ 1 callers
Function
ShowExampleAppAssetsBrowser
imgui/imgui_demo.cpp:10729
↓ 1 callers
Function
ShowExampleAppAutoResize
Demonstrate creating a window which gets auto-resized according to its content.
imgui/imgui_demo.cpp:9460
↓ 1 callers
Function
ShowExampleAppConsole
imgui/imgui_demo.cpp:9003
↓ 1 callers
Function
ShowExampleAppConstrainedResize
Demonstrate creating a window with custom resize constraints. Note that size constraints currently don't work on a docked window (when in 'docking' br
imgui/imgui_demo.cpp:9486
↓ 1 callers
Function
ShowExampleAppCustomRendering
Demonstrate using the low-level ImDrawList to draw custom shapes.
imgui/imgui_demo.cpp:9720
↓ 1 callers
Function
ShowExampleAppDocuments
imgui/imgui_demo.cpp:10141
↓ 1 callers
Function
ShowExampleAppFullscreen
Demonstrate creating a window covering the entire screen/viewport
imgui/imgui_demo.cpp:9640
↓ 1 callers
Function
ShowExampleAppLayout
Demonstrate create a window with multiple child windows.
imgui/imgui_demo.cpp:9176
↓ 1 callers
Function
ShowExampleAppLog
Demonstrate creating a simple log window with basic filtering.
imgui/imgui_demo.cpp:9141
↓ 1 callers
Function
ShowExampleAppLongText
Demonstrate/test rendering huge amount of text, and the incidence of clipping.
imgui/imgui_demo.cpp:9397
↓ 1 callers
Function
ShowExampleAppMainMenuBar
Demonstrate creating a "main" fullscreen menu bar and populating it. Note the difference between BeginMainMenuBar() and BeginMenuBar(): - BeginMenuBar
imgui/imgui_demo.cpp:8540
↓ 1 callers
Function
ShowExampleAppPropertyEditor
Demonstrate creating a simple property editor.
imgui/imgui_demo.cpp:9374
↓ 1 callers
Function
ShowExampleAppSimpleOverlay
Demonstrate creating a simple static window with no decoration + a context-menu to choose which corner of the screen to use.
imgui/imgui_demo.cpp:9585
↓ 1 callers
Function
ShowExampleAppWindowTitles
Demonstrate the use of "##" and "###" in identifiers to manipulate ID generation. This applies to all regular items as well. Read FAQ section "How can
imgui/imgui_demo.cpp:9678
↓ 1 callers
Function
ShowSoftKeyboardInput
Unfortunately, there is no way to show the on-screen input from native code. Therefore, we call ShowSoftKeyboardInput() of the main activity implement
imgui/examples/example_android_opengl3/main.cpp:302
↓ 1 callers
Function
ShowTableColumnsStatusFlags
imgui/imgui_demo.cpp:5528
↓ 1 callers
Function
TableFixFlags
Helper
imgui/imgui_tables.cpp:271
↓ 1 callers
Function
TableGetInstanceID
imgui/imgui_internal.h:3368
↓ 1 callers
Method
Unlink
imgui/imgui_draw.cpp:1791
↓ 1 callers
Function
UnpackBitVectorToFlatIndexList
imgui/imgui_draw.cpp:2866
↓ 1 callers
Method
Update
Helpers for internal use
imgui/imgui_widgets.cpp:8708
↓ 1 callers
Method
UpdateWorkRect
imgui/imgui_internal.h:1879
↓ 1 callers
Function
WaitForNextFrameResources
imgui/examples/example_win32_directx12/main.cpp:482
↓ 1 callers
Method
_ClearFreeMemory
imgui/imgui_draw.cpp:448
↓ 1 callers
Method
_TryMergeDrawCmds
Try to merge two last draw commands
imgui/imgui_draw.cpp:540
↓ 1 callers
Function
binary_to_compressed_c
imgui/misc/fonts/binary_to_compressed_c.cpp:88
↓ 1 callers
Function
compressionScheme
A textual description of the compression scheme, or an empty string if it is not compressed
vulkan/vulkan_format_traits.hpp:7130
↓ 1 callers
Function
erase
imgui/imgui.h:2133
↓ 1 callers
Function
erase_unsorted
imgui/imgui.h:2135
↓ 1 callers
Method
get_line_begin
imgui/imgui_internal.h:747
↓ 1 callers
Method
get_line_end
imgui/imgui_internal.h:748
↓ 1 callers
Function
get_proc
imgui/backends/imgui_impl_opengl3_loader.h:643
↓ 1 callers
Function
hasAlphaComponent
True, if this format has an alpha component
vulkan/vulkan_format_traits.hpp:7771
↓ 1 callers
Function
hasBlueComponent
True, if this format has a blue component
vulkan/vulkan_format_traits.hpp:7903
↓ 1 callers
Function
hasGreenComponent
True, if this format has a green component
vulkan/vulkan_format_traits.hpp:8120
↓ 1 callers
Function
hasRedComponent
True, if this format has a red component
vulkan/vulkan_format_traits.hpp:8354
↓ 1 callers
Function
imgl3wInit
imgui/backends/imgui_impl_opengl3_loader.h:816
↓ 1 callers
Function
imgl3wInit2
imgui/backends/imgui_impl_opengl3_loader.h:825
↓ 1 callers
Function
insert
imgui/imgui.h:2136
↓ 1 callers
Function
is_word_boundary_from_left
imgui/imgui_widgets.cpp:4039
↓ 1 callers
Function
load_procs
imgui/backends/imgui_impl_opengl3_loader.h:906
↓ 1 callers
Function
open_libgl
imgui/backends/imgui_impl_opengl3_loader.h:633
↓ 1 callers
Function
open_libs
imgui/backends/imgui_impl_opengl3_loader.h:701
↓ 1 callers
Method
operator!=
vulkan/vulkan_video.hpp:4542
↓ 1 callers
Method
operator&
vulkan/vulkan_enums.hpp:82
↓ 1 callers
Method
operator==
vulkan/vulkan_video.hpp:4535
↓ 1 callers
Method
operator^
vulkan/vulkan_enums.hpp:92
↓ 1 callers
Method
operator|
vulkan/vulkan_enums.hpp:87
↓ 1 callers
Function
parse_version
imgui/backends/imgui_impl_opengl3_loader.h:797
↓ 1 callers
Function
push_back
NB: It is illegal to call push_back/push_front/insert with a reference pointing inside the ImVector data itself! e.g. v.push_back(v[10]) is forbidden.
imgui/imgui.h:2130
↓ 1 callers
Function
resize
imgui/imgui.h:2123
↓ 1 callers
Function
sAddUInt8
@brief Add uint8 to reply packet **/
imgui/examples/libs/usynergy/uSynergy.c:93
↓ 1 callers
Function
sProcessMessage
imgui/examples/libs/usynergy/uSynergy.c:206
↓ 1 callers
Function
sUpdateContext
@brief Update a connected context **/
imgui/examples/libs/usynergy/uSynergy.c:476
↓ 1 callers
Method
split
imgui/imgui.cpp:2841
↓ 1 callers
Function
stb_adler32
imgui/imgui_draw.cpp:4603
↓ 1 callers
Function
stb_adler32
imgui/misc/fonts/binary_to_compressed_c.cpp:179
↓ 1 callers
Function
stb_compress
imgui/misc/fonts/binary_to_compressed_c.cpp:416
↓ 1 callers
Function
stb_compress_chunk
imgui/misc/fonts/binary_to_compressed_c.cpp:276
↓ 1 callers
Function
stb_compress_inner
imgui/misc/fonts/binary_to_compressed_c.cpp:381
↓ 1 callers
Function
stb_decompress
imgui/imgui_draw.cpp:4634
↓ 1 callers
Function
stb_decompress_token
imgui/imgui_draw.cpp:4586
↓ 1 callers
Function
stb_text_create_undo_record
imgui/imstb_textedit.h:1201
↓ 1 callers
Function
stb_text_makeundo_delete
imgui/imstb_textedit.h:1369
↓ 1 callers
Function
stb_text_redo
imgui/imstb_textedit.h:1313
↓ 1 callers
Function
stb_text_undo
imgui/imstb_textedit.h:1245
↓ 1 callers
Function
stb_textedit_clear_state
reset the state to default
imgui/imstb_textedit.h:1390
↓ 1 callers
Function
stb_textedit_cut
API cut: delete selection
imgui/imstb_textedit.h:711
↓ 1 callers
Function
stb_textedit_discard_redo
discard the oldest entry in the redo list--it's bad if this ever happens, but because undo & redo have to store the actual characters in different cas
imgui/imstb_textedit.h:1171
↓ 1 callers
Function
stb_textedit_flush_redo
imgui/imstb_textedit.h:1142
↓ 1 callers
Function
stb_textedit_initialize_state
API initialize
imgui/imstb_textedit.h:1408
↓ 1 callers
Function
stb_textedit_key
API key: process a keyboard input
imgui/imstb_textedit.h:768
↓ 1 callers
Function
stb_textedit_paste
imgui/imstb_textedit.h:1418
← previous
next →
1,001–1,100 of 5,040, ranked by callers