derelict.imgui.funcs

Undocumented in source.

Members

Aliases

da_ImDrawData_DeIndexAllBuffers
alias da_ImDrawData_DeIndexAllBuffers = void function(ImDrawData* drawData)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawData_ScaleClipRects
alias da_ImDrawData_ScaleClipRects = void function(ImDrawData* drawData, const ImVec2 sc)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddBezierCurve
alias da_ImDrawList_AddBezierCurve = void function(ImDrawList* list, const ImVec2 pos0, const ImVec2 cp0, const ImVec2 cp1, const ImVec2 pos1, ImU32 col, float thickness, int num_segments = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddCallback
alias da_ImDrawList_AddCallback = void function(ImDrawList* list, ImDrawCallback callback, void* callback_data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddCircle
alias da_ImDrawList_AddCircle = void function(ImDrawList* list, const ImVec2 centre, float radius, ImU32 col, int num_segments = 12, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddCircleFilled
alias da_ImDrawList_AddCircleFilled = void function(ImDrawList* list, const ImVec2 centre, float radius, ImU32 col, int num_segments = 12)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddConvexPolyFilled
alias da_ImDrawList_AddConvexPolyFilled = void function(ImDrawList* list, const ImVec2* points, const int num_points, ImU32 col, bool anti_aliased)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddDrawCmd
alias da_ImDrawList_AddDrawCmd = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddImage
alias da_ImDrawList_AddImage = void function(ImDrawList* list, ImTextureID user_texture_id, const ImVec2 a, const ImVec2 b, const ImVec2 uv_a = ImVec2(0, 0), const ImVec2 uv_b = ImVec2(1, 1), ImU32 col = 0xFFFFFFFF)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddImageQuad
alias da_ImDrawList_AddImageQuad = void function(ImDrawList* list, ImTextureID user_texture_id, const ImVec2 a, const ImVec2 b, const ImVec2 c, const ImVec2 d, const ImVec2 uv_a = ImVec2(0, 0), const ImVec2 uv_b = ImVec2(1, 0), const ImVec2 uv_c = ImVec2(1, 1), const ImVec2 uv_d = ImVec2(0, 1), ImU32 col = 0xFFFFFFFF)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddLine
alias da_ImDrawList_AddLine = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, ImU32 col, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddPolyline
alias da_ImDrawList_AddPolyline = void function(ImDrawList* list, const ImVec2* points, const int num_points, ImU32 col, bool closed, float thickness)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddQuad
alias da_ImDrawList_AddQuad = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 c, const ImVec2 d, ImU32 col, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddQuadFilled
alias da_ImDrawList_AddQuadFilled = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 c, const ImVec2 d, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddRect
alias da_ImDrawList_AddRect = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = 0x0F, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddRectFilled
alias da_ImDrawList_AddRectFilled = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, ImU32 col, float rounding = 0.0f, int rounding_corners_flags = 0x0F)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddRectFilledMultiColor
alias da_ImDrawList_AddRectFilledMultiColor = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, ImU32 col_upr_left, ImU32 col_upr_right, ImU32 col_bot_right, ImU32 col_bot_left)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddText
alias da_ImDrawList_AddText = void function(ImDrawList* list, const ImVec2 pos, ImU32 col, const char* text_begin, const char* text_end = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddTextExt
alias da_ImDrawList_AddTextExt = void function(ImDrawList* list, const ImFont* font, float font_size, const ImVec2 pos, ImU32 col, const char* text_begin, const char* text_end = null, float wrap_width = 0.0f, const ImVec4* cpu_fine_clip_rect = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddTriangle
alias da_ImDrawList_AddTriangle = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 c, ImU32 col, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_AddTriangleFilled
alias da_ImDrawList_AddTriangleFilled = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 c, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_ChannelsMerge
alias da_ImDrawList_ChannelsMerge = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_ChannelsSetCurrent
alias da_ImDrawList_ChannelsSetCurrent = void function(ImDrawList* list, int channel_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_ChannelsSplit
alias da_ImDrawList_ChannelsSplit = void function(ImDrawList* list, int channels_count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_Clear
alias da_ImDrawList_Clear = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_ClearFreeMemory
alias da_ImDrawList_ClearFreeMemory = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetClipRectMax
alias da_ImDrawList_GetClipRectMax = void function(ImVec2* pOut, ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetClipRectMin
alias da_ImDrawList_GetClipRectMin = void function(ImVec2* pOut, ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetCmdPtr
alias da_ImDrawList_GetCmdPtr = ImDrawCmd* function(ImDrawList* list, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetCmdSize
alias da_ImDrawList_GetCmdSize = int function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetIndexBufferSize
alias da_ImDrawList_GetIndexBufferSize = int function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetIndexPtr
alias da_ImDrawList_GetIndexPtr = ImDrawIdx* function(ImDrawList* list, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetVertexBufferSize
alias da_ImDrawList_GetVertexBufferSize = int function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_GetVertexPtr
alias da_ImDrawList_GetVertexPtr = ImDrawVert* function(ImDrawList* list, int n)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathArcTo
alias da_ImDrawList_PathArcTo = void function(ImDrawList* list, const ImVec2 centre, float radius, float a_min, float a_max, int num_segments = 10)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathArcToFast
alias da_ImDrawList_PathArcToFast = void function(ImDrawList* list, const ImVec2 centre, float radius, int a_min_of_12, int a_max_of_12)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathBezierCurveTo
alias da_ImDrawList_PathBezierCurveTo = void function(ImDrawList* list, const ImVec2 p1, const ImVec2 p2, const ImVec2 p3, int num_segments = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathClear
alias da_ImDrawList_PathClear = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathFillConvex
alias da_ImDrawList_PathFillConvex = void function(ImDrawList* list, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathLineTo
alias da_ImDrawList_PathLineTo = void function(ImDrawList* list, const ImVec2 pos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathLineToMergeDuplicate
alias da_ImDrawList_PathLineToMergeDuplicate = void function(ImDrawList* list, const ImVec2 pos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathRect
alias da_ImDrawList_PathRect = void function(ImDrawList* list, const ImVec2 rect_min, const ImVec2 rect_max, float rounding = 0.0f, int rounding_corners_flags = 0x0F)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PathStroke
alias da_ImDrawList_PathStroke = void function(ImDrawList* list, ImU32 col, bool closed, float thickness = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PopClipRect
alias da_ImDrawList_PopClipRect = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PopTextureID
alias da_ImDrawList_PopTextureID = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimQuadUV
alias da_ImDrawList_PrimQuadUV = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 c, const ImVec2 d, const ImVec2 uv_a, const ImVec2 uv_b, const ImVec2 uv_c, const ImVec2 uv_d, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimRect
alias da_ImDrawList_PrimRect = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimRectUV
alias da_ImDrawList_PrimRectUV = void function(ImDrawList* list, const ImVec2 a, const ImVec2 b, const ImVec2 uv_a, const ImVec2 uv_b, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimReserve
alias da_ImDrawList_PrimReserve = void function(ImDrawList* list, int idx_count, int vtx_count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimVtx
alias da_ImDrawList_PrimVtx = void function(ImDrawList* list, const ImVec2 pos, const ImVec2 uv, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimWriteIdx
alias da_ImDrawList_PrimWriteIdx = void function(ImDrawList* list, ImDrawIdx idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PrimWriteVtx
alias da_ImDrawList_PrimWriteVtx = void function(ImDrawList* list, const ImVec2 pos, const ImVec2 uv, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PushClipRect
alias da_ImDrawList_PushClipRect = void function(ImDrawList* list, ImVec2 clip_rect_min, ImVec2 clip_rect_max, bool intersect_with_current_clip_rect = false)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PushClipRectFullScreen
alias da_ImDrawList_PushClipRectFullScreen = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_PushTextureID
alias da_ImDrawList_PushTextureID = void function(ImDrawList* list, const ImTextureID texture_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_UpdateClipRect
alias da_ImDrawList_UpdateClipRect = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImDrawList_UpdateTextureID
alias da_ImDrawList_UpdateTextureID = void function(ImDrawList* list)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFont
alias da_ImFontAtlas_AddFont = ImFont* function(ImFontAtlas* atlas, const ImFontConfig* font_cfg)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFontDefault
alias da_ImFontAtlas_AddFontDefault = ImFont* function(ImFontAtlas* atlas, const ImFontConfig* font_cfg = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFontFromFileTTF
alias da_ImFontAtlas_AddFontFromFileTTF = ImFont* function(ImFontAtlas* atlas, const char* filename, float size_pixels, const ImFontConfig* font_cfg = null, const(ImWchar)* glyph_ranges = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFontFromMemoryCompressedBase85TTF
alias da_ImFontAtlas_AddFontFromMemoryCompressedBase85TTF = ImFont* function(const char* compressed_font_data_base85, float size_pixels, const ImFontConfig* font_cfg = null, const(ImWchar)* glyph_ranges = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFontFromMemoryCompressedTTF
alias da_ImFontAtlas_AddFontFromMemoryCompressedTTF = ImFont* function(const void* compressed_font_data, int compressed_font_size, float size_pixels, const ImFontConfig* font_cfg = null, const(ImWchar)* glyph_ranges = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_AddFontFromMemoryTTF
alias da_ImFontAtlas_AddFontFromMemoryTTF = ImFont* function(void* font_data, int font_size, float size_pixels, const ImFontConfig* font_cfg = null, const(ImWchar)* glyph_ranges = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_Clear
alias da_ImFontAtlas_Clear = void function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_ClearFonts
alias da_ImFontAtlas_ClearFonts = void function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_ClearInputData
alias da_ImFontAtlas_ClearInputData = void function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_ClearTexData
alias da_ImFontAtlas_ClearTexData = void function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_Fonts_index
alias da_ImFontAtlas_Fonts_index = ImFont* function(ImFontAtlas* atlas, int index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_Fonts_size
alias da_ImFontAtlas_Fonts_size = int function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesChinese
alias da_ImFontAtlas_GetGlyphRangesChinese = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesCyrillic
alias da_ImFontAtlas_GetGlyphRangesCyrillic = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesDefault
alias da_ImFontAtlas_GetGlyphRangesDefault = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesJapanese
alias da_ImFontAtlas_GetGlyphRangesJapanese = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesKorean
alias da_ImFontAtlas_GetGlyphRangesKorean = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetGlyphRangesThai
alias da_ImFontAtlas_GetGlyphRangesThai = const(ImWchar)* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexDataAsAlpha8
alias da_ImFontAtlas_GetTexDataAsAlpha8 = void function(ImFontAtlas* atlas, ubyte** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexDataAsRGBA32
alias da_ImFontAtlas_GetTexDataAsRGBA32 = void function(ImFontAtlas* atlas, ubyte** out_pixels, int* out_width, int* out_height, int* out_bytes_per_pixel = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexDesiredWidth
alias da_ImFontAtlas_GetTexDesiredWidth = int function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexGlyphPadding
alias da_ImFontAtlas_GetTexGlyphPadding = int function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexHeight
alias da_ImFontAtlas_GetTexHeight = int function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexID
alias da_ImFontAtlas_GetTexID = ImTextureID function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexPixelsAlpha8
alias da_ImFontAtlas_GetTexPixelsAlpha8 = ubyte* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexPixelsRGBA32
alias da_ImFontAtlas_GetTexPixelsRGBA32 = uint* function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexUvWhitePixel
alias da_ImFontAtlas_GetTexUvWhitePixel = void function(ImFontAtlas* atlas, ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_GetTexWidth
alias da_ImFontAtlas_GetTexWidth = int function(ImFontAtlas* atlas)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_SetTexDesiredWidth
alias da_ImFontAtlas_SetTexDesiredWidth = void function(ImFontAtlas* atlas, int TexDesiredWidth_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_SetTexGlyphPadding
alias da_ImFontAtlas_SetTexGlyphPadding = void function(ImFontAtlas* atlas, int TexGlyphPadding_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFontAtlas_SetTexID
alias da_ImFontAtlas_SetTexID = void function(ImFontAtlas* atlas, ImTextureID id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_BuildLookupTable
alias da_ImFont_BuildLookupTable = void function(ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_CalcTextSizeA
alias da_ImFont_CalcTextSizeA = void function(const ImFont* font, ImVec2* pOut, float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = null, const char** remaining = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_CalcWordWrapPositionA
alias da_ImFont_CalcWordWrapPositionA = char* function(const ImFont* font, float scale, const char* text, const char* text_end, float wrap_width)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_ClearOutputData
alias da_ImFont_ClearOutputData = void function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_FindGlyph
alias da_ImFont_FindGlyph = ImFont_Glyph* function(const ImFont* font, ImWchar c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetAscent
alias da_ImFont_GetAscent = float function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetCharAdvance
alias da_ImFont_GetCharAdvance = float function(const ImFont* font, ImWchar c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetConfigData
alias da_ImFont_GetConfigData = ImFontConfig* function(ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetConfigDataCount
alias da_ImFont_GetConfigDataCount = short function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetContainerAtlas
alias da_ImFont_GetContainerAtlas = ImFontAtlas* function(ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetDescent
alias da_ImFont_GetDescent = float function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetDisplayOffset
alias da_ImFont_GetDisplayOffset = void function(const ImFont* font, ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetFallbackAdvanceX
alias da_ImFont_GetFallbackAdvanceX = float function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetFallbackChar
alias da_ImFont_GetFallbackChar = ImWchar function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetFallbackGlyph
alias da_ImFont_GetFallbackGlyph = ImFont_Glyph* function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetFontSize
alias da_ImFont_GetFontSize = float function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetMetricsTotalSurface
alias da_ImFont_GetMetricsTotalSurface = int function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_GetScale
alias da_ImFont_GetScale = float function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_Glyphs_index
alias da_ImFont_Glyphs_index = ImFont_Glyph* function(ImFont* font, int index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_Glyphs_size
alias da_ImFont_Glyphs_size = int function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_IndexLookup_index
alias da_ImFont_IndexLookup_index = ushort function(const ImFont* font, int index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_IndexLookup_size
alias da_ImFont_IndexLookup_size = int function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_IndexXAdvance_index
alias da_ImFont_IndexXAdvance_index = float function(const ImFont* font, int index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_IndexXAdvance_size
alias da_ImFont_IndexXAdvance_size = int function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_IsLoaded
alias da_ImFont_IsLoaded = bool function(const ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_RenderChar
alias da_ImFont_RenderChar = void function(const ImFont* font, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, ushort c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_RenderText
alias da_ImFont_RenderText = void function(const ImFont* font, ImDrawList* draw_list, float size, ImVec2 pos, ImU32 col, const ImVec4* clip_rect, const char* text_begin, const char* text_end, float wrap_width = 0.0f, bool cpu_fine_clip = false)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_SetFallbackChar
alias da_ImFont_SetFallbackChar = void function(ImFont* font, ImWchar c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_SetFallbackGlyph
alias da_ImFont_SetFallbackGlyph = void function(ImFont* font, const ImFont_Glyph* FallbackGlyph_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_SetFontSize
alias da_ImFont_SetFontSize = void function(ImFont* font, float FontSize_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImFont_SetScale
alias da_ImFont_SetScale = void function(ImFont* font, float Scale_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiIO_AddInputCharacter
alias da_ImGuiIO_AddInputCharacter = void function(ushort c)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiIO_AddInputCharactersUTF8
alias da_ImGuiIO_AddInputCharactersUTF8 = void function(const(char*) utf8_chars)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiIO_ClearInputCharacters
alias da_ImGuiIO_ClearInputCharacters = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiListClipper_Begin
alias da_ImGuiListClipper_Begin = void function(ImGuiListClipper* clipper, int items_count, float items_height = -1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiListClipper_End
alias da_ImGuiListClipper_End = void function(ImGuiListClipper* clipper)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiListClipper_GetDisplayEnd
alias da_ImGuiListClipper_GetDisplayEnd = int function(ImGuiListClipper* clipper)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiListClipper_GetDisplayStart
alias da_ImGuiListClipper_GetDisplayStart = int function(ImGuiListClipper* clipper)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiListClipper_Step
alias da_ImGuiListClipper_Step = bool function(ImGuiListClipper* clipper)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_Clear
alias da_ImGuiStorage_Clear = void function(ImGuiStorage* storage)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_Create
alias da_ImGuiStorage_Create = ImGuiStorage* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_Destroy
alias da_ImGuiStorage_Destroy = void function(ImGuiStorage* storage)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetBool
alias da_ImGuiStorage_GetBool = bool function(ImGuiStorage* storage, ImGuiID key, bool default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetBoolRef
alias da_ImGuiStorage_GetBoolRef = bool* function(ImGuiStorage* storage, ImGuiID key, bool default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetFloat
alias da_ImGuiStorage_GetFloat = float function(ImGuiStorage* storage, ImGuiID key, float default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetFloatRef
alias da_ImGuiStorage_GetFloatRef = float* function(ImGuiStorage* storage, ImGuiID key, float default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetInt
alias da_ImGuiStorage_GetInt = int function(ImGuiStorage* storage, ImGuiID key, int default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetIntRef
alias da_ImGuiStorage_GetIntRef = int* function(ImGuiStorage* storage, ImGuiID key, int default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetVoidPtr
alias da_ImGuiStorage_GetVoidPtr = void* function(ImGuiStorage* storage, ImGuiID key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_GetVoidPtrRef
alias da_ImGuiStorage_GetVoidPtrRef = void** function(ImGuiStorage* storage, ImGuiID key, void* default_val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_SetAllInt
alias da_ImGuiStorage_SetAllInt = void function(ImGuiStorage* storage, int val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_SetBool
alias da_ImGuiStorage_SetBool = void function(ImGuiStorage* storage, ImGuiID key, bool val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_SetFloat
alias da_ImGuiStorage_SetFloat = void function(ImGuiStorage* storage, ImGuiID key, float val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_SetInt
alias da_ImGuiStorage_SetInt = void function(ImGuiStorage* storage, ImGuiID key, int val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiStorage_SetVoidPtr
alias da_ImGuiStorage_SetVoidPtr = void function(ImGuiStorage* storage, ImGuiID key, void* val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_Create
alias da_ImGuiTextBuffer_Create = ImGuiTextBuffer* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_Destroy
alias da_ImGuiTextBuffer_Destroy = void function(ImGuiTextBuffer* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_appendf
alias da_ImGuiTextBuffer_appendf = void function(ImGuiTextBuffer* buffer, const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_appendfv
alias da_ImGuiTextBuffer_appendfv = void function(ImGuiTextBuffer* buffer, const(char)* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_begin
alias da_ImGuiTextBuffer_begin = char* function(const(ImGuiTextBuffer)* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_c_str
alias da_ImGuiTextBuffer_c_str = char* function(const(ImGuiTextBuffer)* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_clear
alias da_ImGuiTextBuffer_clear = void function(ImGuiTextBuffer* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_empty
alias da_ImGuiTextBuffer_empty = bool function(ImGuiTextBuffer* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_end
alias da_ImGuiTextBuffer_end = char* function(const(ImGuiTextBuffer)* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_index
alias da_ImGuiTextBuffer_index = char function(ImGuiTextBuffer* buffer, int i)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextBuffer_size
alias da_ImGuiTextBuffer_size = int function(const(ImGuiTextBuffer)* buffer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextEditCallbackData_DeleteChars
alias da_ImGuiTextEditCallbackData_DeleteChars = void function(ImGuiTextEditCallbackData* data, int pos, int bytes_count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextEditCallbackData_HasSelection
alias da_ImGuiTextEditCallbackData_HasSelection = bool function(ImGuiTextEditCallbackData* data)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextEditCallbackData_InsertChars
alias da_ImGuiTextEditCallbackData_InsertChars = void function(ImGuiTextEditCallbackData* data, int pos, const char* text, const char* text_end = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_Build
alias da_ImGuiTextFilter_Build = void function(ImGuiTextFilter* filter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_Clear
alias da_ImGuiTextFilter_Clear = void function(ImGuiTextFilter* filter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_Create
alias da_ImGuiTextFilter_Create = ImGuiTextFilter* function(const char* default_filter = "")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_Destroy
alias da_ImGuiTextFilter_Destroy = void function(ImGuiTextFilter* filter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_Draw
alias da_ImGuiTextFilter_Draw = bool function(ImGuiTextFilter* filter, const char* label = "Filter (inc,-exc)", float width = 0.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_GetInputBuf
alias da_ImGuiTextFilter_GetInputBuf = const(char)* function(ImGuiTextFilter* filter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_IsActive
alias da_ImGuiTextFilter_IsActive = bool function(const(ImGuiTextFilter)* filter)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_ImGuiTextFilter_PassFilter
alias da_ImGuiTextFilter_PassFilter = bool function(const(ImGuiTextFilter)* filter, const char* text, const char* text_end = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igAlignTextToFramePadding
alias da_igAlignTextToFramePadding = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBegin
alias da_igBegin = bool function(const char* name, bool* p_opened = null, ImGuiWindowFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginChild
alias da_igBeginChild = bool function(const char* str_id, const ImVec2 size = ImVec2(0, 0), bool border = false, ImGuiWindowFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginChildEx
alias da_igBeginChildEx = bool function(ImGuiID id, const ImVec2 size = ImVec2(0, 0), bool border = false, ImGuiWindowFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginChildFrame
alias da_igBeginChildFrame = bool function(ImGuiID id, const ImVec2 size, ImGuiWindowFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginGroup
alias da_igBeginGroup = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginMainMenuBar
alias da_igBeginMainMenuBar = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginMenu
alias da_igBeginMenu = bool function(const(char)* label, bool enabled = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginMenuBar
alias da_igBeginMenuBar = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginPopup
alias da_igBeginPopup = bool function(const(char)* str_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginPopupContextItem
alias da_igBeginPopupContextItem = bool function(const(char)* str_id, int mouse_button = 1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginPopupContextVoid
alias da_igBeginPopupContextVoid = bool function(const(char)* str_id = null, int mouse_button = 1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginPopupContextWindow
alias da_igBeginPopupContextWindow = bool function(const(char)* str_id = null, int mouse_button = 1, bool also_over_items = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginPopupModal
alias da_igBeginPopupModal = bool function(const(char)* name, bool* p_opened = null, ImGuiWindowFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBeginTooltip
alias da_igBeginTooltip = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBullet
alias da_igBullet = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBulletText
alias da_igBulletText = void function(const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igBulletTextV
alias da_igBulletTextV = void function(const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igButton
alias da_igButton = bool function(const char* label, const ImVec2 size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCalcItemRectClosestPoint
alias da_igCalcItemRectClosestPoint = void function(ImVec2* pOut, const ImVec2 pos, bool on_edge = false, float outward = +0.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCalcItemWidth
alias da_igCalcItemWidth = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCalcListClipping
alias da_igCalcListClipping = void function(int items_count, float items_height, int* out_items_display_start, int* out_items_display_end)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCalcTextSize
alias da_igCalcTextSize = void function(ImVec2* pOut, const char* text, const char* text_end = null, bool hide_text_after_double_hash = false, float wrap_width = -1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCaptureKeyboardFromApp
alias da_igCaptureKeyboardFromApp = void function(bool capture = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCaptureMouseFromApp
alias da_igCaptureMouseFromApp = void function(bool capture = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCheckbox
alias da_igCheckbox = bool function(const char* label, bool* v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCheckboxFlags
alias da_igCheckboxFlags = bool function(const char* label, uint* flags, uint flags_value)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCloseCurrentPopup
alias da_igCloseCurrentPopup = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCollapsingHeader
alias da_igCollapsingHeader = bool function(const char* label, ImGuiTreeNodeFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCollapsingHeaderEx
alias da_igCollapsingHeaderEx = bool function(const char* label, bool* p_open, ImGuiTreeNodeFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorButton
alias da_igColorButton = bool function(const char* desc_id, const ImVec4 col, ImGuiColorEditFlags flags = 0, ImVec2 size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorConvertFloat4ToU32
alias da_igColorConvertFloat4ToU32 = ImU32 function(const ImVec4 in_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorConvertHSVtoRGB
alias da_igColorConvertHSVtoRGB = void function(float h, float s, float v, float* out_r, float* out_g, float* out_b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorConvertRGBtoHSV
alias da_igColorConvertRGBtoHSV = void function(float r, float g, float b, float* out_h, float* out_s, float* out_v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorConvertU32ToFloat4
alias da_igColorConvertU32ToFloat4 = void function(ImVec4* pOut, ImU32 in_)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorEdit3
alias da_igColorEdit3 = bool function(const char* label, ref float[3] col, ImGuiColorEditFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorEdit4
alias da_igColorEdit4 = bool function(const char* label, ref float[4] col, ImGuiColorEditFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorPicker3
alias da_igColorPicker3 = bool function(const char* label, ref float[3] col, ImGuiColorEditFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColorPicker4
alias da_igColorPicker4 = bool function(const char* label, ref float[4] col, ImGuiColorEditFlags flags = 0, const float* ref_col = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igColumns
alias da_igColumns = void function(int count = 1, const char* id = null, bool border = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCombo
alias da_igCombo = bool function(const char* label, int* current_item, const char** items, int items_count, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCombo2
alias da_igCombo2 = bool function(const char* label, int* current_item, const char* items_separated_by_zeros, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCombo3
alias da_igCombo3 = bool function(const char* label, int* current_item, bool function(void* data, int idx, const(char)** out_text) items_getter, void* data, int items_count, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igCreateContext
alias da_igCreateContext = ImGuiContext* function(void* function(size_t) malloc_fn = null, void function(void*) free_fn = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDestroyContext
alias da_igDestroyContext = void function(ImGuiContext* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragFloat
alias da_igDragFloat = bool function(const char* label, float* v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragFloat2
alias da_igDragFloat2 = bool function(const char* label, ref float[2] v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragFloat3
alias da_igDragFloat3 = bool function(const char* label, ref float[3] v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragFloat4
alias da_igDragFloat4 = bool function(const char* label, ref float[4] v, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragFloatRange2
alias da_igDragFloatRange2 = bool function(const char* label, float* v_current_min, float* v_current_max, float v_speed = 1.0f, float v_min = 0.0f, float v_max = 0.0f, const char* display_format = "%.3f", const char* display_format_max = null, float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragInt
alias da_igDragInt = bool function(const char* label, int* v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = "%.3f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragInt2
alias da_igDragInt2 = bool function(const char* label, ref int[2] v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = "%.3f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragInt3
alias da_igDragInt3 = bool function(const char* label, ref int[3] v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = "%.3f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragInt4
alias da_igDragInt4 = bool function(const char* label, ref int[4] v, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = "%.3f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDragIntRange2
alias da_igDragIntRange2 = bool function(const char* label, int* v_current_min, int* v_current_max, float v_speed = 1.0f, int v_min = 0, int v_max = 0, const char* display_format = "%.0f", const char* display_format_max = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igDummy
alias da_igDummy = void function(const ImVec2* size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEnd
alias da_igEnd = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndChild
alias da_igEndChild = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndChildFrame
alias da_igEndChildFrame = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndGroup
alias da_igEndGroup = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndMainMenuBar
alias da_igEndMainMenuBar = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndMenu
alias da_igEndMenu = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndMenuBar
alias da_igEndMenuBar = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndPopup
alias da_igEndPopup = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igEndTooltip
alias da_igEndTooltip = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetClipboardText
alias da_igGetClipboardText = const(char)* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColorU32
alias da_igGetColorU32 = ImU32 function(ImGuiCol idx, float alpha_mul = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColorU32U32
alias da_igGetColorU32U32 = ImU32 function(ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColorU32Vec
alias da_igGetColorU32Vec = ImU32 function(const ImVec4* col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColumnIndex
alias da_igGetColumnIndex = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColumnOffset
alias da_igGetColumnOffset = float function(int column_index = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColumnWidth
alias da_igGetColumnWidth = float function(int column_index = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetColumnsCount
alias da_igGetColumnsCount = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetContentRegionAvail
alias da_igGetContentRegionAvail = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetContentRegionAvailWidth
alias da_igGetContentRegionAvailWidth = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetContentRegionMax
alias da_igGetContentRegionMax = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCurrentContext
alias da_igGetCurrentContext = ImGuiContext* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCursorPos
alias da_igGetCursorPos = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCursorPosX
alias da_igGetCursorPosX = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCursorPosY
alias da_igGetCursorPosY = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCursorScreenPos
alias da_igGetCursorScreenPos = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetCursorStartPos
alias da_igGetCursorStartPos = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetDrawData
alias da_igGetDrawData = ImDrawData* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetFont
alias da_igGetFont = ImFont* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetFontSize
alias da_igGetFontSize = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetFontTexUvWhitePixel
alias da_igGetFontTexUvWhitePixel = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetFrameCount
alias da_igGetFrameCount = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetFrameHeightWithSpacing
alias da_igGetFrameHeightWithSpacing = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetIDPtr
alias da_igGetIDPtr = ImGuiID function(const void* ptr_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetIDStr
alias da_igGetIDStr = ImGuiID function(const char* str_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetIDStrRange
alias da_igGetIDStrRange = ImGuiID function(const char* str_begin, const char* str_end)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetIO
alias da_igGetIO = ImGuiIO* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetItemRectMax
alias da_igGetItemRectMax = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetItemRectMin
alias da_igGetItemRectMin = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetItemRectSize
alias da_igGetItemRectSize = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetKeyIndex
alias da_igGetKeyIndex = int function(ImGuiKey imgui_key)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetMouseCursor
alias da_igGetMouseCursor = ImGuiMouseCursor function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetMouseDragDelta
alias da_igGetMouseDragDelta = void function(ImVec2* pOut, int button = 0, float lock_threshold = -1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetMousePos
alias da_igGetMousePos = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetMousePosOnOpeningCurrentPopup
alias da_igGetMousePosOnOpeningCurrentPopup = void function(ImVec2* pOut)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetScrollMaxX
alias da_igGetScrollMaxX = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetScrollMaxY
alias da_igGetScrollMaxY = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetScrollX
alias da_igGetScrollX = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetScrollY
alias da_igGetScrollY = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetStateStorage
alias da_igGetStateStorage = ImGuiStorage* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetStyle
alias da_igGetStyle = ImGuiStyle* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetStyleColorName
alias da_igGetStyleColorName = const(char)* function(ImGuiCol idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetStyleColorVec4
alias da_igGetStyleColorVec4 = void function(ImVec4* pout, ImGuiCol idx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetTextLineHeight
alias da_igGetTextLineHeight = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetTextLineHeightWithSpacing
alias da_igGetTextLineHeightWithSpacing = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetTime
alias da_igGetTime = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetTreeNodeToLabelSpacing
alias da_igGetTreeNodeToLabelSpacing = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetVersion
alias da_igGetVersion = const(char)* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowContentRegionMax
alias da_igGetWindowContentRegionMax = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowContentRegionMin
alias da_igGetWindowContentRegionMin = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowContentRegionWidth
alias da_igGetWindowContentRegionWidth = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowDrawList
alias da_igGetWindowDrawList = ImDrawList* function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowHeight
alias da_igGetWindowHeight = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowPos
alias da_igGetWindowPos = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowSize
alias da_igGetWindowSize = void function(ImVec2* outParam)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igGetWindowWidth
alias da_igGetWindowWidth = float function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igImage
alias da_igImage = void function(ImTextureID user_texture_id, const ImVec2 size, const ImVec2 uv0 = ImVec2(0, 0), const ImVec2 uv1 = ImVec2(1, 1), const ImVec4 tint_col = ImVec4(1, 1, 1, 1), const ImVec4 border_col = ImVec4(0, 0, 0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igImageButton
alias da_igImageButton = bool function(ImTextureID user_texture_id, const ImVec2 size, const ImVec2 uv0 = ImVec2(0, 0), const ImVec2 uv1 = ImVec2(1, 1), int frame_padding = -1, const ImVec4 bg_col = ImVec4(0, 0, 0, 0), const ImVec4 tint_col = ImVec4(1, 1, 1, 1))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIndent
alias da_igIndent = void function(float indent_w = 0.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputFloat
alias da_igInputFloat = bool function(const char* label, float* v, float step = 0.0f, float step_fast = 0.0f, int decimal_precision = -1, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputFloat2
alias da_igInputFloat2 = bool function(const char* label, ref float[2] v, int decimal_precision = -1, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputFloat3
alias da_igInputFloat3 = bool function(const char* label, ref float[3] v, int decimal_precision = -1, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputFloat4
alias da_igInputFloat4 = bool function(const char* label, ref float[4] v, int decimal_precision = -1, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputInt
alias da_igInputInt = bool function(const char* label, int* v, int step = 1, int step_fast = 100, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputInt2
alias da_igInputInt2 = bool function(const char* label, ref int[2] v, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputInt3
alias da_igInputInt3 = bool function(const char* label, ref int[3] v, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputInt4
alias da_igInputInt4 = bool function(const char* label, ref int[4] v, ImGuiInputTextFlags extra_flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputText
alias da_igInputText = bool function(const char* label, char* buf, size_t buf_size, ImGuiInputTextFlags flags = 0, ImGuiTextEditCallback callback = null, void* user_data = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInputTextMultiline
alias da_igInputTextMultiline = bool function(const char* label, char* buf, size_t buf_size, const ImVec2 size = ImVec2(0, 0), ImGuiInputTextFlags flags = 0, ImGuiTextEditCallback callback = null, void* user_data = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igInvisibleButton
alias da_igInvisibleButton = bool function(const char* str_id, const ImVec2 size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsAnyItemActive
alias da_igIsAnyItemActive = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsAnyItemHovered
alias da_igIsAnyItemHovered = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsAnyWindowHovered
alias da_igIsAnyWindowHovered = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsItemActive
alias da_igIsItemActive = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsItemClicked
alias da_igIsItemClicked = bool function(int mouse_button = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsItemHovered
alias da_igIsItemHovered = bool function(ImGuiHoveredFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsItemVisible
alias da_igIsItemVisible = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsKeyDown
alias da_igIsKeyDown = bool function(int user_key_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsKeyPressed
alias da_igIsKeyPressed = bool function(int user_key_index, bool repeat = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsKeyReleased
alias da_igIsKeyReleased = bool function(int user_key_index)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseClicked
alias da_igIsMouseClicked = bool function(int button, bool repeat = false)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseDoubleClicked
alias da_igIsMouseDoubleClicked = bool function(int button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseDown
alias da_igIsMouseDown = bool function(int button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseDragging
alias da_igIsMouseDragging = bool function(int button = 0, float lock_threshold = -1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseHoveringRect
alias da_igIsMouseHoveringRect = bool function(const ImVec2 r_min, const ImVec2 r_max, bool clip = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMousePosValid
alias da_igIsMousePosValid = bool function(const ImVec2* mouse_pos = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsMouseReleased
alias da_igIsMouseReleased = bool function(int button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsPopupOpen
alias da_igIsPopupOpen = bool function(const(char)* str_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsRectVisible
alias da_igIsRectVisible = bool function(const ImVec2 item_size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsRectVisible2
alias da_igIsRectVisible2 = bool function(const ImVec2 rect_min, const ImVec2 rect_max)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsWindowCollapsed
alias da_igIsWindowCollapsed = bool function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsWindowFocused
alias da_igIsWindowFocused = bool function(ImGuiFocusedFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igIsWindowHovered
alias da_igIsWindowHovered = bool function(ImGuiHoveredFlags flags = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLabelText
alias da_igLabelText = void function(const char* label, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLabelTextV
alias da_igLabelTextV = void function(const char* label, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igListBox
alias da_igListBox = bool function(const char* label, int* current_item, const char** items, int items_count, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igListBox2
alias da_igListBox2 = bool function(const char* label, int* current_item, bool function(void* data, int idx, const char** out_text) items_getter, void* data, int items_count, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igListBoxFooter
alias da_igListBoxFooter = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igListBoxHeader
alias da_igListBoxHeader = bool function(const char* label, const ImVec2 size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igListBoxHeader2
alias da_igListBoxHeader2 = bool function(const char* label, int items_count, int height_in_items = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogButtons
alias da_igLogButtons = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogFinish
alias da_igLogFinish = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogText
alias da_igLogText = void function(const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogToClipboard
alias da_igLogToClipboard = void function(int max_depth = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogToFile
alias da_igLogToFile = void function(int max_depth = -1, const char* filename = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igLogToTTY
alias da_igLogToTTY = void function(int max_depth = -1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igMemAlloc
alias da_igMemAlloc = void* function(size_t sz)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igMemFree
alias da_igMemFree = void function(void* ptr)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igMenuItem
alias da_igMenuItem = bool function(const(char)* label, const(char)* shortcut = null, bool selected = false, bool enabled = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igMenuItemPtr
alias da_igMenuItemPtr = bool function(const(char)* label, const(char)* shortcut, bool* p_selected, bool enabled = true)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igNewFrame
alias da_igNewFrame = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igNewLine
alias da_igNewLine = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igNextColumn
alias da_igNextColumn = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igOpenPopup
alias da_igOpenPopup = void function(const(char)* str_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPlotHistogram
alias da_igPlotHistogram = void function(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = null, float scale_min = float.max, float scale_max = float.max, ImVec2 graph_size = ImVec2(0, 0), size_t stride = float.sizeof)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPlotHistogram2
alias da_igPlotHistogram2 = void function(const char* label, float function(void* data, int idx) values_getter, void* data, int values_count, int values_offset = 0, const char* overlay_text = null, float scale_min = float.max, float scale_max = float.max, ImVec2 graph_size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPlotLines
alias da_igPlotLines = void function(const char* label, const float* values, int values_count, int values_offset = 0, const char* overlay_text = null, float scale_min = float.max, float scale_max = float.max, ImVec2 graph_size = ImVec2(0, 0), size_t stride = float.sizeof)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPlotLines2
alias da_igPlotLines2 = void function(const char* label, float function(void* data, int idx) values_getter, void* data, int values_count, int values_offset = 0, const char* overlay_text = null, float scale_min = float.max, float scale_max = float.max, ImVec2 graph_size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopAllowKeyboardFocus
alias da_igPopAllowKeyboardFocus = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopButtonRepeat
alias da_igPopButtonRepeat = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopClipRect
alias da_igPopClipRect = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopFont
alias da_igPopFont = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopID
alias da_igPopID = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopItemWidth
alias da_igPopItemWidth = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopStyleColor
alias da_igPopStyleColor = void function(int count = 1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopStyleVar
alias da_igPopStyleVar = void function(int count = 1)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPopTextWrapPos
alias da_igPopTextWrapPos = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igProgressBar
alias da_igProgressBar = void function(float fraction, const ImVec2* size_arg, const(char)* overlay = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushAllowKeyboardFocus
alias da_igPushAllowKeyboardFocus = void function(bool v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushButtonRepeat
alias da_igPushButtonRepeat = void function(bool repeat)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushClipRect
alias da_igPushClipRect = void function(const ImVec2 clip_rect_min, const ImVec2 clip_rect_max, bool intersect_with_current_clip_rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushFont
alias da_igPushFont = void function(ImFont* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushIDInt
alias da_igPushIDInt = void function(int int_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushIDPtr
alias da_igPushIDPtr = void function(const void* ptr_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushIDStr
alias da_igPushIDStr = void function(const char* str_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushIDStrRange
alias da_igPushIDStrRange = void function(const char* str_begin, const char* str_end)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushItemWidth
alias da_igPushItemWidth = void function(float item_width)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushStyleColor
alias da_igPushStyleColor = void function(ImGuiCol idx, const ImVec4 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushStyleColorU32
alias da_igPushStyleColorU32 = void function(ImGuiCol idx, ImU32 col)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushStyleVar
alias da_igPushStyleVar = void function(ImGuiStyleVar idx, float val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushStyleVarVec
alias da_igPushStyleVarVec = void function(ImGuiStyleVar idx, const ImVec2 val)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igPushTextWrapPos
alias da_igPushTextWrapPos = void function(float wrap_pos_x = 0.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igRadioButton
alias da_igRadioButton = bool function(const char* label, int* v, int v_button)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igRadioButtonBool
alias da_igRadioButtonBool = bool function(const char* label, bool active)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igRender
alias da_igRender = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igResetMouseDragDelta
alias da_igResetMouseDragDelta = void function(int button = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSameLine
alias da_igSameLine = void function(float pos_x = 0.0f, float spacing_w = -1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSelectable
alias da_igSelectable = bool function(const char* label, bool selected = false, ImGuiSelectableFlags flags = 0, const ImVec2 size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSelectableEx
alias da_igSelectableEx = bool function(const char* label, bool* p_selected, ImGuiSelectableFlags flags = 0, const ImVec2 size = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSeparator
alias da_igSeparator = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetClipboardText
alias da_igSetClipboardText = void function(const(char)* text)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetColorEditOptions
alias da_igSetColorEditOptions = void function(ImGuiColorEditFlags flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetColumnOffset
alias da_igSetColumnOffset = void function(int column_index, float offset_x)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetColumnWidth
alias da_igSetColumnWidth = void function(int column_index, float width)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetCurrentContext
alias da_igSetCurrentContext = void function(ImGuiContext* ctx)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetCursorPos
alias da_igSetCursorPos = void function(const ImVec2 locl_pos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetCursorPosX
alias da_igSetCursorPosX = void function(float x)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetCursorPosY
alias da_igSetCursorPosY = void function(float y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetCursorScreenPos
alias da_igSetCursorScreenPos = void function(const ImVec2 pos)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetItemAllowOverlap
alias da_igSetItemAllowOverlap = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetKeyboardFocusHere
alias da_igSetKeyboardFocusHere = void function(int offset = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetMouseCursor
alias da_igSetMouseCursor = void function(ImGuiMouseCursor type)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextTreeNodeOpen
alias da_igSetNextTreeNodeOpen = void function(bool opened, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowCollapsed
alias da_igSetNextWindowCollapsed = void function(bool collapsed, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowContentSize
alias da_igSetNextWindowContentSize = void function(const ImVec2 size)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowFocus
alias da_igSetNextWindowFocus = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowPos
alias da_igSetNextWindowPos = void function(const ImVec2 pos, ImGuiCond cond = 0, const ImVec2 pivot = ImVec2(0, 0))
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowSize
alias da_igSetNextWindowSize = void function(const ImVec2 size, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetNextWindowSizeConstraints
alias da_igSetNextWindowSizeConstraints = void function(const ImVec2 size_min, const ImVec2 size_max, ImGuiSizeConstraintCallback custom_callback = null, void* custom_callback_data = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetScrollFromPosY
alias da_igSetScrollFromPosY = void function(float pos_y, float center_y_ratio = 0.5f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetScrollHere
alias da_igSetScrollHere = void function(float center_y_ratio = 0.5f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetScrollX
alias da_igSetScrollX = void function(float scroll_x)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetScrollY
alias da_igSetScrollY = void function(float scroll_y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetStateStorage
alias da_igSetStateStorage = void function(ImGuiStorage* tree)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetTooltip
alias da_igSetTooltip = void function(const(char)* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetTooltipV
alias da_igSetTooltipV = void function(const(char)* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowCollapsed
alias da_igSetWindowCollapsed = void function(bool collapsed, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowCollapsed2
alias da_igSetWindowCollapsed2 = void function(const char* name, bool collapsed, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowFocus
alias da_igSetWindowFocus = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowFocus2
alias da_igSetWindowFocus2 = void function(const char* name)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowFontScale
alias da_igSetWindowFontScale = void function(float scale)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowPos
alias da_igSetWindowPos = void function(const ImVec2 pos, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowPosByName
alias da_igSetWindowPosByName = void function(const char* name, const ImVec2 pos, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowSize
alias da_igSetWindowSize = void function(const ImVec2 size, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSetWindowSize2
alias da_igSetWindowSize2 = void function(const char* name, const ImVec2 size, ImGuiCond cond = 0)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowDemoWindow
alias da_igShowDemoWindow = void function(bool* p_open = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowFontSelector
alias da_igShowFontSelector = void function(const char* label = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowMetricsWindow
alias da_igShowMetricsWindow = void function(bool* p_open = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowStyleEditor
alias da_igShowStyleEditor = void function(ImGuiStyle* ref_ = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowStyleSelector
alias da_igShowStyleSelector = bool function(const char* label = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShowUserGuide
alias da_igShowUserGuide = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igShutdown
alias da_igShutdown = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderAngle
alias da_igSliderAngle = bool function(const char* label, float* v_rad, float v_degrees_min = -360.0f, float v_degrees_max = +360.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderFloat
alias da_igSliderFloat = bool function(const char* label, float* v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderFloat2
alias da_igSliderFloat2 = bool function(const char* label, ref float[2] v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderFloat3
alias da_igSliderFloat3 = bool function(const char* label, ref float[3] v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderFloat4
alias da_igSliderFloat4 = bool function(const char* label, ref float[4] v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderInt
alias da_igSliderInt = bool function(const char* label, int* v, int v_min, int v_max, const char* display_format = "%.0f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderInt2
alias da_igSliderInt2 = bool function(const char* label, ref int[2] v, int v_min, int v_max, const char* display_format = "%.0f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderInt3
alias da_igSliderInt3 = bool function(const char* label, ref int[3] v, int v_min, int v_max, const char* display_format = "%.0f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSliderInt4
alias da_igSliderInt4 = bool function(const char* label, ref int[4] v, int v_min, int v_max, const char* display_format = "%.0f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSmallButton
alias da_igSmallButton = bool function(const char* label)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igSpacing
alias da_igSpacing = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igText
alias da_igText = void function(const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextColored
alias da_igTextColored = void function(const ImVec4 col, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextColoredV
alias da_igTextColoredV = void function(const ImVec4 col, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextDisabled
alias da_igTextDisabled = void function(const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextDisabledV
alias da_igTextDisabledV = void function(const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextUnformatted
alias da_igTextUnformatted = void function(const char* text, const char* text_end = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextV
alias da_igTextV = void function(const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextWrapped
alias da_igTextWrapped = void function(const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTextWrappedV
alias da_igTextWrappedV = void function(const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeAdvanceToLabelPos
alias da_igTreeAdvanceToLabelPos = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNode
alias da_igTreeNode = bool function(const char* str_label_id)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeEx
alias da_igTreeNodeEx = bool function(const char* label, ImGuiTreeNodeFlags flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeExPtr
alias da_igTreeNodeExPtr = bool function(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeExStr
alias da_igTreeNodeExStr = bool function(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeExV
alias da_igTreeNodeExV = bool function(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeExVPtr
alias da_igTreeNodeExVPtr = bool function(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodePtr
alias da_igTreeNodePtr = bool function(const void* ptr_id, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodePtrV
alias da_igTreeNodePtrV = bool function(const void* ptr_id, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeStr
alias da_igTreeNodeStr = bool function(const char* str_id, const char* fmt, ...)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreeNodeStrV
alias da_igTreeNodeStrV = bool function(const char* str_id, const char* fmt, va_list args)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreePop
alias da_igTreePop = void function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreePushPtr
alias da_igTreePushPtr = void function(const void* ptr_id = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igTreePushStr
alias da_igTreePushStr = void function(const char* str_id = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igUnindent
alias da_igUnindent = void function(float indent_w = 0.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igVSliderFloat
alias da_igVSliderFloat = bool function(const char* label, const ImVec2 size, float* v, float v_min, float v_max, const char* display_format = "%.3f", float power = 1.0f)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igVSliderInt
alias da_igVSliderInt = bool function(const char* label, const ImVec2 size, int* v, int v_min, int v_max, const char* display_format = "%.0f")
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igValueBool
alias da_igValueBool = void function(const char* prefix, bool b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igValueFloat
alias da_igValueFloat = void function(const char* prefix, float v, const char* float_format = null)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igValueInt
alias da_igValueInt = void function(const char* prefix, int v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
da_igValueUInt
alias da_igValueUInt = void function(const char* prefix, uint v)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
igGetIdPtr
alias igGetIdPtr = igGetIDPtr
Undocumented in source.
igGetIdStr
alias igGetIdStr = igGetIDStr
Undocumented in source.
igGetIdStrRange
alias igGetIdStrRange = igGetIDStrRange
Undocumented in source.
igPopId
alias igPopId = igPopID
Undocumented in source.
igPushIdInt
alias igPushIdInt = igPushIDInt
Undocumented in source.
igPushIdPtr
alias igPushIdPtr = igPushIDPtr
Undocumented in source.
igPushIdStr
alias igPushIdStr = igPushIDStr
Undocumented in source.
igPushIdStrRange
alias igPushIdStrRange = igPushIDStrRange
Undocumented in source.

Static variables

ImDrawData_DeIndexAllBuffers
da_ImDrawData_DeIndexAllBuffers ImDrawData_DeIndexAllBuffers;
Undocumented in source.
ImDrawData_ScaleClipRects
da_ImDrawData_ScaleClipRects ImDrawData_ScaleClipRects;
Undocumented in source.
ImDrawList_AddBezierCurve
da_ImDrawList_AddBezierCurve ImDrawList_AddBezierCurve;
Undocumented in source.
ImDrawList_AddCallback
da_ImDrawList_AddCallback ImDrawList_AddCallback;
Undocumented in source.
ImDrawList_AddCircle
da_ImDrawList_AddCircle ImDrawList_AddCircle;
Undocumented in source.
ImDrawList_AddCircleFilled
da_ImDrawList_AddCircleFilled ImDrawList_AddCircleFilled;
Undocumented in source.
ImDrawList_AddConvexPolyFilled
da_ImDrawList_AddConvexPolyFilled ImDrawList_AddConvexPolyFilled;
Undocumented in source.
ImDrawList_AddDrawCmd
da_ImDrawList_AddDrawCmd ImDrawList_AddDrawCmd;
Undocumented in source.
ImDrawList_AddImage
da_ImDrawList_AddImage ImDrawList_AddImage;
Undocumented in source.
ImDrawList_AddImageQuad
da_ImDrawList_AddImageQuad ImDrawList_AddImageQuad;
Undocumented in source.
ImDrawList_AddLine
da_ImDrawList_AddLine ImDrawList_AddLine;
Undocumented in source.
ImDrawList_AddPolyline
da_ImDrawList_AddPolyline ImDrawList_AddPolyline;
Undocumented in source.
ImDrawList_AddQuad
da_ImDrawList_AddQuad ImDrawList_AddQuad;
Undocumented in source.
ImDrawList_AddQuadFilled
da_ImDrawList_AddQuadFilled ImDrawList_AddQuadFilled;
Undocumented in source.
ImDrawList_AddRect
da_ImDrawList_AddRect ImDrawList_AddRect;
Undocumented in source.
ImDrawList_AddRectFilled
da_ImDrawList_AddRectFilled ImDrawList_AddRectFilled;
Undocumented in source.
ImDrawList_AddRectFilledMultiColor
da_ImDrawList_AddRectFilledMultiColor ImDrawList_AddRectFilledMultiColor;
Undocumented in source.
ImDrawList_AddText
da_ImDrawList_AddText ImDrawList_AddText;
Undocumented in source.
ImDrawList_AddTextExt
da_ImDrawList_AddTextExt ImDrawList_AddTextExt;
Undocumented in source.
ImDrawList_AddTriangle
da_ImDrawList_AddTriangle ImDrawList_AddTriangle;
Undocumented in source.
ImDrawList_AddTriangleFilled
da_ImDrawList_AddTriangleFilled ImDrawList_AddTriangleFilled;
Undocumented in source.
ImDrawList_ChannelsMerge
da_ImDrawList_ChannelsMerge ImDrawList_ChannelsMerge;
Undocumented in source.
ImDrawList_ChannelsSetCurrent
da_ImDrawList_ChannelsSetCurrent ImDrawList_ChannelsSetCurrent;
Undocumented in source.
ImDrawList_ChannelsSplit
da_ImDrawList_ChannelsSplit ImDrawList_ChannelsSplit;
Undocumented in source.
ImDrawList_Clear
da_ImDrawList_Clear ImDrawList_Clear;
Undocumented in source.
ImDrawList_ClearFreeMemory
da_ImDrawList_ClearFreeMemory ImDrawList_ClearFreeMemory;
Undocumented in source.
ImDrawList_GetClipRectMax
da_ImDrawList_GetClipRectMax ImDrawList_GetClipRectMax;
Undocumented in source.
ImDrawList_GetClipRectMin
da_ImDrawList_GetClipRectMin ImDrawList_GetClipRectMin;
Undocumented in source.
ImDrawList_GetCmdPtr
da_ImDrawList_GetCmdPtr ImDrawList_GetCmdPtr;
Undocumented in source.
ImDrawList_GetCmdSize
da_ImDrawList_GetCmdSize ImDrawList_GetCmdSize;
Undocumented in source.
ImDrawList_GetIndexBufferSize
da_ImDrawList_GetIndexBufferSize ImDrawList_GetIndexBufferSize;
Undocumented in source.
ImDrawList_GetIndexPtr
da_ImDrawList_GetIndexPtr ImDrawList_GetIndexPtr;
Undocumented in source.
ImDrawList_GetVertexBufferSize
da_ImDrawList_GetVertexBufferSize ImDrawList_GetVertexBufferSize;
Undocumented in source.
ImDrawList_GetVertexPtr
da_ImDrawList_GetVertexPtr ImDrawList_GetVertexPtr;
Undocumented in source.
ImDrawList_PathArcTo
da_ImDrawList_PathArcTo ImDrawList_PathArcTo;
Undocumented in source.
ImDrawList_PathArcToFast
da_ImDrawList_PathArcToFast ImDrawList_PathArcToFast;
Undocumented in source.
ImDrawList_PathBezierCurveTo
da_ImDrawList_PathBezierCurveTo ImDrawList_PathBezierCurveTo;
Undocumented in source.
ImDrawList_PathClear
da_ImDrawList_PathClear ImDrawList_PathClear;
Undocumented in source.
ImDrawList_PathFillConvex
da_ImDrawList_PathFillConvex ImDrawList_PathFillConvex;
Undocumented in source.
ImDrawList_PathLineTo
da_ImDrawList_PathLineTo ImDrawList_PathLineTo;
Undocumented in source.
ImDrawList_PathLineToMergeDuplicate
da_ImDrawList_PathLineToMergeDuplicate ImDrawList_PathLineToMergeDuplicate;
Undocumented in source.
ImDrawList_PathRect
da_ImDrawList_PathRect ImDrawList_PathRect;
Undocumented in source.
ImDrawList_PathStroke
da_ImDrawList_PathStroke ImDrawList_PathStroke;
Undocumented in source.
ImDrawList_PopClipRect
da_ImDrawList_PopClipRect ImDrawList_PopClipRect;
Undocumented in source.
ImDrawList_PopTextureID
da_ImDrawList_PopTextureID ImDrawList_PopTextureID;
Undocumented in source.
ImDrawList_PrimQuadUV
da_ImDrawList_PrimQuadUV ImDrawList_PrimQuadUV;
Undocumented in source.
ImDrawList_PrimRect
da_ImDrawList_PrimRect ImDrawList_PrimRect;
Undocumented in source.
ImDrawList_PrimRectUV
da_ImDrawList_PrimRectUV ImDrawList_PrimRectUV;
Undocumented in source.
ImDrawList_PrimReserve
da_ImDrawList_PrimReserve ImDrawList_PrimReserve;
Undocumented in source.
ImDrawList_PrimVtx
da_ImDrawList_PrimVtx ImDrawList_PrimVtx;
Undocumented in source.
ImDrawList_PrimWriteIdx
da_ImDrawList_PrimWriteIdx ImDrawList_PrimWriteIdx;
Undocumented in source.
ImDrawList_PrimWriteVtx
da_ImDrawList_PrimWriteVtx ImDrawList_PrimWriteVtx;
Undocumented in source.
ImDrawList_PushClipRect
da_ImDrawList_PushClipRect ImDrawList_PushClipRect;
Undocumented in source.
ImDrawList_PushClipRectFullScreen
da_ImDrawList_PushClipRectFullScreen ImDrawList_PushClipRectFullScreen;
Undocumented in source.
ImDrawList_PushTextureID
da_ImDrawList_PushTextureID ImDrawList_PushTextureID;
Undocumented in source.
ImDrawList_UpdateClipRect
da_ImDrawList_UpdateClipRect ImDrawList_UpdateClipRect;
Undocumented in source.
ImDrawList_UpdateTextureID
da_ImDrawList_UpdateTextureID ImDrawList_UpdateTextureID;
Undocumented in source.
ImFontAtlas_AddFont
da_ImFontAtlas_AddFont ImFontAtlas_AddFont;
Undocumented in source.
ImFontAtlas_AddFontDefault
da_ImFontAtlas_AddFontDefault ImFontAtlas_AddFontDefault;
Undocumented in source.
ImFontAtlas_AddFontFromFileTTF
da_ImFontAtlas_AddFontFromFileTTF ImFontAtlas_AddFontFromFileTTF;
Undocumented in source.
ImFontAtlas_AddFontFromMemoryCompressedBase85TTF
da_ImFontAtlas_AddFontFromMemoryCompressedBase85TTF ImFontAtlas_AddFontFromMemoryCompressedBase85TTF;
Undocumented in source.
ImFontAtlas_AddFontFromMemoryCompressedTTF
da_ImFontAtlas_AddFontFromMemoryCompressedTTF ImFontAtlas_AddFontFromMemoryCompressedTTF;
Undocumented in source.
ImFontAtlas_AddFontFromMemoryTTF
da_ImFontAtlas_AddFontFromMemoryTTF ImFontAtlas_AddFontFromMemoryTTF;
Undocumented in source.
ImFontAtlas_Clear
da_ImFontAtlas_Clear ImFontAtlas_Clear;
Undocumented in source.
ImFontAtlas_ClearFonts
da_ImFontAtlas_ClearFonts ImFontAtlas_ClearFonts;
Undocumented in source.
ImFontAtlas_ClearInputData
da_ImFontAtlas_ClearInputData ImFontAtlas_ClearInputData;
Undocumented in source.
ImFontAtlas_ClearTexData
da_ImFontAtlas_ClearTexData ImFontAtlas_ClearTexData;
Undocumented in source.
ImFontAtlas_Fonts_index
da_ImFontAtlas_Fonts_index ImFontAtlas_Fonts_index;
Undocumented in source.
ImFontAtlas_Fonts_size
da_ImFontAtlas_Fonts_size ImFontAtlas_Fonts_size;
Undocumented in source.
ImFontAtlas_GetGlyphRangesChinese
da_ImFontAtlas_GetGlyphRangesChinese ImFontAtlas_GetGlyphRangesChinese;
Undocumented in source.
ImFontAtlas_GetGlyphRangesCyrillic
da_ImFontAtlas_GetGlyphRangesCyrillic ImFontAtlas_GetGlyphRangesCyrillic;
Undocumented in source.
ImFontAtlas_GetGlyphRangesDefault
da_ImFontAtlas_GetGlyphRangesDefault ImFontAtlas_GetGlyphRangesDefault;
Undocumented in source.
ImFontAtlas_GetGlyphRangesJapanese
da_ImFontAtlas_GetGlyphRangesJapanese ImFontAtlas_GetGlyphRangesJapanese;
Undocumented in source.
ImFontAtlas_GetGlyphRangesKorean
da_ImFontAtlas_GetGlyphRangesKorean ImFontAtlas_GetGlyphRangesKorean;
Undocumented in source.
ImFontAtlas_GetGlyphRangesThai
da_ImFontAtlas_GetGlyphRangesThai ImFontAtlas_GetGlyphRangesThai;
Undocumented in source.
ImFontAtlas_GetTexDataAsAlpha8
da_ImFontAtlas_GetTexDataAsAlpha8 ImFontAtlas_GetTexDataAsAlpha8;
Undocumented in source.
ImFontAtlas_GetTexDataAsRGBA32
da_ImFontAtlas_GetTexDataAsRGBA32 ImFontAtlas_GetTexDataAsRGBA32;
Undocumented in source.
ImFontAtlas_GetTexDesiredWidth
da_ImFontAtlas_GetTexDesiredWidth ImFontAtlas_GetTexDesiredWidth;
Undocumented in source.
ImFontAtlas_GetTexGlyphPadding
da_ImFontAtlas_GetTexGlyphPadding ImFontAtlas_GetTexGlyphPadding;
Undocumented in source.
ImFontAtlas_GetTexHeight
da_ImFontAtlas_GetTexHeight ImFontAtlas_GetTexHeight;
Undocumented in source.
ImFontAtlas_GetTexID
da_ImFontAtlas_GetTexID ImFontAtlas_GetTexID;
Undocumented in source.
ImFontAtlas_GetTexPixelsAlpha8
da_ImFontAtlas_GetTexPixelsAlpha8 ImFontAtlas_GetTexPixelsAlpha8;
Undocumented in source.
ImFontAtlas_GetTexPixelsRGBA32
da_ImFontAtlas_GetTexPixelsRGBA32 ImFontAtlas_GetTexPixelsRGBA32;
Undocumented in source.
ImFontAtlas_GetTexUvWhitePixel
da_ImFontAtlas_GetTexUvWhitePixel ImFontAtlas_GetTexUvWhitePixel;
Undocumented in source.
ImFontAtlas_GetTexWidth
da_ImFontAtlas_GetTexWidth ImFontAtlas_GetTexWidth;
Undocumented in source.
ImFontAtlas_SetTexDesiredWidth
da_ImFontAtlas_SetTexDesiredWidth ImFontAtlas_SetTexDesiredWidth;
Undocumented in source.
ImFontAtlas_SetTexGlyphPadding
da_ImFontAtlas_SetTexGlyphPadding ImFontAtlas_SetTexGlyphPadding;
Undocumented in source.
ImFontAtlas_SetTexID
da_ImFontAtlas_SetTexID ImFontAtlas_SetTexID;
Undocumented in source.
ImFont_BuildLookupTable
da_ImFont_BuildLookupTable ImFont_BuildLookupTable;
Undocumented in source.
ImFont_CalcTextSizeA
da_ImFont_CalcTextSizeA ImFont_CalcTextSizeA;
Undocumented in source.
ImFont_CalcWordWrapPositionA
da_ImFont_CalcWordWrapPositionA ImFont_CalcWordWrapPositionA;
Undocumented in source.
ImFont_ClearOutputData
da_ImFont_ClearOutputData ImFont_ClearOutputData;
Undocumented in source.
ImFont_FindGlyph
da_ImFont_FindGlyph ImFont_FindGlyph;
Undocumented in source.
ImFont_GetAscent
da_ImFont_GetAscent ImFont_GetAscent;
Undocumented in source.
ImFont_GetCharAdvance
da_ImFont_GetCharAdvance ImFont_GetCharAdvance;
Undocumented in source.
ImFont_GetConfigData
da_ImFont_GetConfigData ImFont_GetConfigData;
Undocumented in source.
ImFont_GetConfigDataCount
da_ImFont_GetConfigDataCount ImFont_GetConfigDataCount;
Undocumented in source.
ImFont_GetContainerAtlas
da_ImFont_GetContainerAtlas ImFont_GetContainerAtlas;
Undocumented in source.
ImFont_GetDescent
da_ImFont_GetDescent ImFont_GetDescent;
Undocumented in source.
ImFont_GetDisplayOffset
da_ImFont_GetDisplayOffset ImFont_GetDisplayOffset;
Undocumented in source.
ImFont_GetFallbackAdvanceX
da_ImFont_GetFallbackAdvanceX ImFont_GetFallbackAdvanceX;
Undocumented in source.
ImFont_GetFallbackChar
da_ImFont_GetFallbackChar ImFont_GetFallbackChar;
Undocumented in source.
ImFont_GetFallbackGlyph
da_ImFont_GetFallbackGlyph ImFont_GetFallbackGlyph;
Undocumented in source.
ImFont_GetFontSize
da_ImFont_GetFontSize ImFont_GetFontSize;
Undocumented in source.
ImFont_GetMetricsTotalSurface
da_ImFont_GetMetricsTotalSurface ImFont_GetMetricsTotalSurface;
Undocumented in source.
ImFont_GetScale
da_ImFont_GetScale ImFont_GetScale;
Undocumented in source.
ImFont_Glyphs_index
da_ImFont_Glyphs_index ImFont_Glyphs_index;
Undocumented in source.
ImFont_Glyphs_size
da_ImFont_Glyphs_size ImFont_Glyphs_size;
Undocumented in source.
ImFont_IndexLookup_index
da_ImFont_IndexLookup_index ImFont_IndexLookup_index;
Undocumented in source.
ImFont_IndexLookup_size
da_ImFont_IndexLookup_size ImFont_IndexLookup_size;
Undocumented in source.
ImFont_IndexXAdvance_index
da_ImFont_IndexXAdvance_index ImFont_IndexXAdvance_index;
Undocumented in source.
ImFont_IndexXAdvance_size
da_ImFont_IndexXAdvance_size ImFont_IndexXAdvance_size;
Undocumented in source.
ImFont_IsLoaded
da_ImFont_IsLoaded ImFont_IsLoaded;
Undocumented in source.
ImFont_RenderChar
da_ImFont_RenderChar ImFont_RenderChar;
Undocumented in source.
ImFont_RenderText
da_ImFont_RenderText ImFont_RenderText;
Undocumented in source.
ImFont_SetFallbackChar
da_ImFont_SetFallbackChar ImFont_SetFallbackChar;
Undocumented in source.
ImFont_SetFallbackGlyph
da_ImFont_SetFallbackGlyph ImFont_SetFallbackGlyph;
Undocumented in source.
ImFont_SetFontSize
da_ImFont_SetFontSize ImFont_SetFontSize;
Undocumented in source.
ImFont_SetScale
da_ImFont_SetScale ImFont_SetScale;
Undocumented in source.
ImGuiIO_AddInputCharacter
da_ImGuiIO_AddInputCharacter ImGuiIO_AddInputCharacter;
Undocumented in source.
ImGuiIO_AddInputCharactersUTF8
da_ImGuiIO_AddInputCharactersUTF8 ImGuiIO_AddInputCharactersUTF8;
Undocumented in source.
ImGuiIO_ClearInputCharacters
da_ImGuiIO_ClearInputCharacters ImGuiIO_ClearInputCharacters;
Undocumented in source.
ImGuiListClipper_Begin
da_ImGuiListClipper_Begin ImGuiListClipper_Begin;
Undocumented in source.
ImGuiListClipper_End
da_ImGuiListClipper_End ImGuiListClipper_End;
Undocumented in source.
ImGuiListClipper_GetDisplayEnd
da_ImGuiListClipper_GetDisplayEnd ImGuiListClipper_GetDisplayEnd;
Undocumented in source.
ImGuiListClipper_GetDisplayStart
da_ImGuiListClipper_GetDisplayStart ImGuiListClipper_GetDisplayStart;
Undocumented in source.
ImGuiListClipper_Step
da_ImGuiListClipper_Step ImGuiListClipper_Step;
Undocumented in source.
ImGuiStorage_Clear
da_ImGuiStorage_Clear ImGuiStorage_Clear;
Undocumented in source.
ImGuiStorage_Create
da_ImGuiStorage_Create ImGuiStorage_Create;
Undocumented in source.
ImGuiStorage_Destroy
da_ImGuiStorage_Destroy ImGuiStorage_Destroy;
Undocumented in source.
ImGuiStorage_GetBool
da_ImGuiStorage_GetBool ImGuiStorage_GetBool;
Undocumented in source.
ImGuiStorage_GetBoolRef
da_ImGuiStorage_GetBoolRef ImGuiStorage_GetBoolRef;
Undocumented in source.
ImGuiStorage_GetFloat
da_ImGuiStorage_GetFloat ImGuiStorage_GetFloat;
Undocumented in source.
ImGuiStorage_GetFloatRef
da_ImGuiStorage_GetFloatRef ImGuiStorage_GetFloatRef;
Undocumented in source.
ImGuiStorage_GetInt
da_ImGuiStorage_GetInt ImGuiStorage_GetInt;
Undocumented in source.
ImGuiStorage_GetIntRef
da_ImGuiStorage_GetIntRef ImGuiStorage_GetIntRef;
Undocumented in source.
ImGuiStorage_GetVoidPtr
da_ImGuiStorage_GetVoidPtr ImGuiStorage_GetVoidPtr;
Undocumented in source.
ImGuiStorage_GetVoidPtrRef
da_ImGuiStorage_GetVoidPtrRef ImGuiStorage_GetVoidPtrRef;
Undocumented in source.
ImGuiStorage_SetAllInt
da_ImGuiStorage_SetAllInt ImGuiStorage_SetAllInt;
Undocumented in source.
ImGuiStorage_SetBool
da_ImGuiStorage_SetBool ImGuiStorage_SetBool;
Undocumented in source.
ImGuiStorage_SetFloat
da_ImGuiStorage_SetFloat ImGuiStorage_SetFloat;
Undocumented in source.
ImGuiStorage_SetInt
da_ImGuiStorage_SetInt ImGuiStorage_SetInt;
Undocumented in source.
ImGuiStorage_SetVoidPtr
da_ImGuiStorage_SetVoidPtr ImGuiStorage_SetVoidPtr;
Undocumented in source.
ImGuiTextBuffer_Create
da_ImGuiTextBuffer_Create ImGuiTextBuffer_Create;
Undocumented in source.
ImGuiTextBuffer_Destroy
da_ImGuiTextBuffer_Destroy ImGuiTextBuffer_Destroy;
Undocumented in source.
ImGuiTextBuffer_appendf
da_ImGuiTextBuffer_appendf ImGuiTextBuffer_appendf;
Undocumented in source.
ImGuiTextBuffer_appendfv
da_ImGuiTextBuffer_appendfv ImGuiTextBuffer_appendfv;
Undocumented in source.
ImGuiTextBuffer_begin
da_ImGuiTextBuffer_begin ImGuiTextBuffer_begin;
Undocumented in source.
ImGuiTextBuffer_c_str
da_ImGuiTextBuffer_c_str ImGuiTextBuffer_c_str;
Undocumented in source.
ImGuiTextBuffer_clear
da_ImGuiTextBuffer_clear ImGuiTextBuffer_clear;
Undocumented in source.
ImGuiTextBuffer_empty
da_ImGuiTextBuffer_empty ImGuiTextBuffer_empty;
Undocumented in source.
ImGuiTextBuffer_end
da_ImGuiTextBuffer_end ImGuiTextBuffer_end;
Undocumented in source.
ImGuiTextBuffer_index
da_ImGuiTextBuffer_index ImGuiTextBuffer_index;
Undocumented in source.
ImGuiTextBuffer_size
da_ImGuiTextBuffer_size ImGuiTextBuffer_size;
Undocumented in source.
ImGuiTextEditCallbackData_DeleteChars
da_ImGuiTextEditCallbackData_DeleteChars ImGuiTextEditCallbackData_DeleteChars;
Undocumented in source.
ImGuiTextEditCallbackData_HasSelection
da_ImGuiTextEditCallbackData_HasSelection ImGuiTextEditCallbackData_HasSelection;
Undocumented in source.
ImGuiTextEditCallbackData_InsertChars
da_ImGuiTextEditCallbackData_InsertChars ImGuiTextEditCallbackData_InsertChars;
Undocumented in source.
ImGuiTextFilter_Build
da_ImGuiTextFilter_Build ImGuiTextFilter_Build;
Undocumented in source.
ImGuiTextFilter_Clear
da_ImGuiTextFilter_Clear ImGuiTextFilter_Clear;
Undocumented in source.
ImGuiTextFilter_Create
da_ImGuiTextFilter_Create ImGuiTextFilter_Create;
Undocumented in source.
ImGuiTextFilter_Destroy
da_ImGuiTextFilter_Destroy ImGuiTextFilter_Destroy;
Undocumented in source.
ImGuiTextFilter_Draw
da_ImGuiTextFilter_Draw ImGuiTextFilter_Draw;
Undocumented in source.
ImGuiTextFilter_GetInputBuf
da_ImGuiTextFilter_GetInputBuf ImGuiTextFilter_GetInputBuf;
Undocumented in source.
ImGuiTextFilter_IsActive
da_ImGuiTextFilter_IsActive ImGuiTextFilter_IsActive;
Undocumented in source.
ImGuiTextFilter_PassFilter
da_ImGuiTextFilter_PassFilter ImGuiTextFilter_PassFilter;
Undocumented in source.
igAlignTextToFramePadding
da_igAlignTextToFramePadding igAlignTextToFramePadding;
Undocumented in source.
igBegin
da_igBegin igBegin;
Undocumented in source.
igBeginChild
da_igBeginChild igBeginChild;
Undocumented in source.
igBeginChildEx
da_igBeginChildEx igBeginChildEx;
Undocumented in source.
igBeginChildFrame
da_igBeginChildFrame igBeginChildFrame;
Undocumented in source.
igBeginGroup
da_igBeginGroup igBeginGroup;
Undocumented in source.
igBeginMainMenuBar
da_igBeginMainMenuBar igBeginMainMenuBar;
Undocumented in source.
igBeginMenu
da_igBeginMenu igBeginMenu;
Undocumented in source.
igBeginMenuBar
da_igBeginMenuBar igBeginMenuBar;
Undocumented in source.
igBeginPopup
da_igBeginPopup igBeginPopup;
Undocumented in source.
igBeginPopupContextItem
da_igBeginPopupContextItem igBeginPopupContextItem;
Undocumented in source.
igBeginPopupContextVoid
da_igBeginPopupContextVoid igBeginPopupContextVoid;
Undocumented in source.
igBeginPopupContextWindow
da_igBeginPopupContextWindow igBeginPopupContextWindow;
Undocumented in source.
igBeginPopupModal
da_igBeginPopupModal igBeginPopupModal;
Undocumented in source.
igBeginTooltip
da_igBeginTooltip igBeginTooltip;
Undocumented in source.
igBullet
da_igBullet igBullet;
Undocumented in source.
igBulletText
da_igBulletText igBulletText;
Undocumented in source.
igBulletTextV
da_igBulletTextV igBulletTextV;
Undocumented in source.
igButton
da_igButton igButton;
Undocumented in source.
igCalcItemRectClosestPoint
da_igCalcItemRectClosestPoint igCalcItemRectClosestPoint;
Undocumented in source.
igCalcItemWidth
da_igCalcItemWidth igCalcItemWidth;
Undocumented in source.
igCalcListClipping
da_igCalcListClipping igCalcListClipping;
Undocumented in source.
igCalcTextSize
da_igCalcTextSize igCalcTextSize;
Undocumented in source.
igCaptureKeyboardFromApp
da_igCaptureKeyboardFromApp igCaptureKeyboardFromApp;
Undocumented in source.
igCaptureMouseFromApp
da_igCaptureMouseFromApp igCaptureMouseFromApp;
Undocumented in source.
igCheckbox
da_igCheckbox igCheckbox;
Undocumented in source.
igCheckboxFlags
da_igCheckboxFlags igCheckboxFlags;
Undocumented in source.
igCloseCurrentPopup
da_igCloseCurrentPopup igCloseCurrentPopup;
Undocumented in source.
igCollapsingHeader
da_igCollapsingHeader igCollapsingHeader;
Undocumented in source.
igCollapsingHeaderEx
da_igCollapsingHeaderEx igCollapsingHeaderEx;
Undocumented in source.
igColorButton
da_igColorButton igColorButton;
Undocumented in source.
igColorConvertFloat4ToU32
da_igColorConvertFloat4ToU32 igColorConvertFloat4ToU32;
Undocumented in source.
igColorConvertHSVtoRGB
da_igColorConvertHSVtoRGB igColorConvertHSVtoRGB;
Undocumented in source.
igColorConvertRGBtoHSV
da_igColorConvertRGBtoHSV igColorConvertRGBtoHSV;
Undocumented in source.
igColorConvertU32ToFloat4
da_igColorConvertU32ToFloat4 igColorConvertU32ToFloat4;
Undocumented in source.
igColorEdit3
da_igColorEdit3 igColorEdit3;
Undocumented in source.
igColorEdit4
da_igColorEdit4 igColorEdit4;
Undocumented in source.
igColorPicker3
da_igColorPicker3 igColorPicker3;
Undocumented in source.
igColorPicker4
da_igColorPicker4 igColorPicker4;
Undocumented in source.
igColumns
da_igColumns igColumns;
Undocumented in source.
igCombo
da_igCombo igCombo;
Undocumented in source.
igCombo2
da_igCombo2 igCombo2;
Undocumented in source.
igCombo3
da_igCombo3 igCombo3;
Undocumented in source.
igCreateContext
da_igCreateContext igCreateContext;
Undocumented in source.
igDestroyContext
da_igDestroyContext igDestroyContext;
Undocumented in source.
igDragFloat
da_igDragFloat igDragFloat;
Undocumented in source.
igDragFloat2
da_igDragFloat2 igDragFloat2;
Undocumented in source.
igDragFloat3
da_igDragFloat3 igDragFloat3;
Undocumented in source.
igDragFloat4
da_igDragFloat4 igDragFloat4;
Undocumented in source.
igDragFloatRange2
da_igDragFloatRange2 igDragFloatRange2;
Undocumented in source.
igDragInt
da_igDragInt igDragInt;
Undocumented in source.
igDragInt2
da_igDragInt2 igDragInt2;
Undocumented in source.
igDragInt3
da_igDragInt3 igDragInt3;
Undocumented in source.
igDragInt4
da_igDragInt4 igDragInt4;
Undocumented in source.
igDragIntRange2
da_igDragIntRange2 igDragIntRange2;
Undocumented in source.
igDummy
da_igDummy igDummy;
Undocumented in source.
igEnd
da_igEnd igEnd;
Undocumented in source.
igEndChild
da_igEndChild igEndChild;
Undocumented in source.
igEndChildFrame
da_igEndChildFrame igEndChildFrame;
Undocumented in source.
igEndGroup
da_igEndGroup igEndGroup;
Undocumented in source.
igEndMainMenuBar
da_igEndMainMenuBar igEndMainMenuBar;
Undocumented in source.
igEndMenu
da_igEndMenu igEndMenu;
Undocumented in source.
igEndMenuBar
da_igEndMenuBar igEndMenuBar;
Undocumented in source.
igEndPopup
da_igEndPopup igEndPopup;
Undocumented in source.
igEndTooltip
da_igEndTooltip igEndTooltip;
Undocumented in source.
igGetClipboardText
da_igGetClipboardText igGetClipboardText;
Undocumented in source.
igGetColorU32
da_igGetColorU32 igGetColorU32;
Undocumented in source.
igGetColorU32U32
da_igGetColorU32U32 igGetColorU32U32;
Undocumented in source.
igGetColorU32Vec
da_igGetColorU32Vec igGetColorU32Vec;
Undocumented in source.
igGetColumnIndex
da_igGetColumnIndex igGetColumnIndex;
Undocumented in source.
igGetColumnOffset
da_igGetColumnOffset igGetColumnOffset;
Undocumented in source.
igGetColumnWidth
da_igGetColumnWidth igGetColumnWidth;
Undocumented in source.
igGetColumnsCount
da_igGetColumnsCount igGetColumnsCount;
Undocumented in source.
igGetContentRegionAvail
da_igGetContentRegionAvail igGetContentRegionAvail;
Undocumented in source.
igGetContentRegionAvailWidth
da_igGetContentRegionAvailWidth igGetContentRegionAvailWidth;
Undocumented in source.
igGetContentRegionMax
da_igGetContentRegionMax igGetContentRegionMax;
Undocumented in source.
igGetCurrentContext
da_igGetCurrentContext igGetCurrentContext;
Undocumented in source.
igGetCursorPos
da_igGetCursorPos igGetCursorPos;
Undocumented in source.
igGetCursorPosX
da_igGetCursorPosX igGetCursorPosX;
Undocumented in source.
igGetCursorPosY
da_igGetCursorPosY igGetCursorPosY;
Undocumented in source.
igGetCursorScreenPos
da_igGetCursorScreenPos igGetCursorScreenPos;
Undocumented in source.
igGetCursorStartPos
da_igGetCursorStartPos igGetCursorStartPos;
Undocumented in source.
igGetDrawData
da_igGetDrawData igGetDrawData;
Undocumented in source.
igGetFont
da_igGetFont igGetFont;
Undocumented in source.
igGetFontSize
da_igGetFontSize igGetFontSize;
Undocumented in source.
igGetFontTexUvWhitePixel
da_igGetFontTexUvWhitePixel igGetFontTexUvWhitePixel;
Undocumented in source.
igGetFrameCount
da_igGetFrameCount igGetFrameCount;
Undocumented in source.
igGetFrameHeightWithSpacing
da_igGetFrameHeightWithSpacing igGetFrameHeightWithSpacing;
Undocumented in source.
igGetIDPtr
da_igGetIDPtr igGetIDPtr;
Undocumented in source.
igGetIDStr
da_igGetIDStr igGetIDStr;
Undocumented in source.
igGetIDStrRange
da_igGetIDStrRange igGetIDStrRange;
Undocumented in source.
igGetIO
da_igGetIO igGetIO;
Undocumented in source.
igGetItemRectMax
da_igGetItemRectMax igGetItemRectMax;
Undocumented in source.
igGetItemRectMin
da_igGetItemRectMin igGetItemRectMin;
Undocumented in source.
igGetItemRectSize
da_igGetItemRectSize igGetItemRectSize;
Undocumented in source.
igGetKeyIndex
da_igGetKeyIndex igGetKeyIndex;
Undocumented in source.
igGetMouseCursor
da_igGetMouseCursor igGetMouseCursor;
Undocumented in source.
igGetMouseDragDelta
da_igGetMouseDragDelta igGetMouseDragDelta;
Undocumented in source.
igGetMousePos
da_igGetMousePos igGetMousePos;
Undocumented in source.
igGetMousePosOnOpeningCurrentPopup
da_igGetMousePosOnOpeningCurrentPopup igGetMousePosOnOpeningCurrentPopup;
Undocumented in source.
igGetScrollMaxX
da_igGetScrollMaxX igGetScrollMaxX;
Undocumented in source.
igGetScrollMaxY
da_igGetScrollMaxY igGetScrollMaxY;
Undocumented in source.
igGetScrollX
da_igGetScrollX igGetScrollX;
Undocumented in source.
igGetScrollY
da_igGetScrollY igGetScrollY;
Undocumented in source.
igGetStateStorage
da_igGetStateStorage igGetStateStorage;
Undocumented in source.
igGetStyle
da_igGetStyle igGetStyle;
Undocumented in source.
igGetStyleColorName
da_igGetStyleColorName igGetStyleColorName;
Undocumented in source.
igGetStyleColorVec4
da_igGetStyleColorVec4 igGetStyleColorVec4;
Undocumented in source.
igGetTextLineHeight
da_igGetTextLineHeight igGetTextLineHeight;
Undocumented in source.
igGetTextLineHeightWithSpacing
da_igGetTextLineHeightWithSpacing igGetTextLineHeightWithSpacing;
Undocumented in source.
igGetTime
da_igGetTime igGetTime;
Undocumented in source.
igGetTreeNodeToLabelSpacing
da_igGetTreeNodeToLabelSpacing igGetTreeNodeToLabelSpacing;
Undocumented in source.
igGetVersion
da_igGetVersion igGetVersion;
Undocumented in source.
igGetWindowContentRegionMax
da_igGetWindowContentRegionMax igGetWindowContentRegionMax;
Undocumented in source.
igGetWindowContentRegionMin
da_igGetWindowContentRegionMin igGetWindowContentRegionMin;
Undocumented in source.
igGetWindowContentRegionWidth
da_igGetWindowContentRegionWidth igGetWindowContentRegionWidth;
Undocumented in source.
igGetWindowDrawList
da_igGetWindowDrawList igGetWindowDrawList;
Undocumented in source.
igGetWindowHeight
da_igGetWindowHeight igGetWindowHeight;
Undocumented in source.
igGetWindowPos
da_igGetWindowPos igGetWindowPos;
Undocumented in source.
igGetWindowSize
da_igGetWindowSize igGetWindowSize;
Undocumented in source.
igGetWindowWidth
da_igGetWindowWidth igGetWindowWidth;
Undocumented in source.
igImage
da_igImage igImage;
Undocumented in source.
igImageButton
da_igImageButton igImageButton;
Undocumented in source.
igIndent
da_igIndent igIndent;
Undocumented in source.
igInputFloat
da_igInputFloat igInputFloat;
Undocumented in source.
igInputFloat2
da_igInputFloat2 igInputFloat2;
Undocumented in source.
igInputFloat3
da_igInputFloat3 igInputFloat3;
Undocumented in source.
igInputFloat4
da_igInputFloat4 igInputFloat4;
Undocumented in source.
igInputInt
da_igInputInt igInputInt;
Undocumented in source.
igInputInt2
da_igInputInt2 igInputInt2;
Undocumented in source.
igInputInt3
da_igInputInt3 igInputInt3;
Undocumented in source.
igInputInt4
da_igInputInt4 igInputInt4;
Undocumented in source.
igInputText
da_igInputText igInputText;
Undocumented in source.
igInputTextMultiline
da_igInputTextMultiline igInputTextMultiline;
Undocumented in source.
igInvisibleButton
da_igInvisibleButton igInvisibleButton;
Undocumented in source.
igIsAnyItemActive
da_igIsAnyItemActive igIsAnyItemActive;
Undocumented in source.
igIsAnyItemHovered
da_igIsAnyItemHovered igIsAnyItemHovered;
Undocumented in source.
igIsAnyWindowHovered
da_igIsAnyWindowHovered igIsAnyWindowHovered;
Undocumented in source.
igIsItemActive
da_igIsItemActive igIsItemActive;
Undocumented in source.
igIsItemClicked
da_igIsItemClicked igIsItemClicked;
Undocumented in source.
igIsItemHovered
da_igIsItemHovered igIsItemHovered;
Undocumented in source.
igIsItemVisible
da_igIsItemVisible igIsItemVisible;
Undocumented in source.
igIsKeyDown
da_igIsKeyDown igIsKeyDown;
Undocumented in source.
igIsKeyPressed
da_igIsKeyPressed igIsKeyPressed;
Undocumented in source.
igIsKeyReleased
da_igIsKeyReleased igIsKeyReleased;
Undocumented in source.
igIsMouseClicked
da_igIsMouseClicked igIsMouseClicked;
Undocumented in source.
igIsMouseDoubleClicked
da_igIsMouseDoubleClicked igIsMouseDoubleClicked;
Undocumented in source.
igIsMouseDown
da_igIsMouseDown igIsMouseDown;
Undocumented in source.
igIsMouseDragging
da_igIsMouseDragging igIsMouseDragging;
Undocumented in source.
igIsMouseHoveringRect
da_igIsMouseHoveringRect igIsMouseHoveringRect;
Undocumented in source.
igIsMousePosValid
da_igIsMousePosValid igIsMousePosValid;
Undocumented in source.
igIsMouseReleased
da_igIsMouseReleased igIsMouseReleased;
Undocumented in source.
igIsPopupOpen
da_igIsPopupOpen igIsPopupOpen;
Undocumented in source.
igIsRectVisible
da_igIsRectVisible igIsRectVisible;
Undocumented in source.
igIsRectVisible2
da_igIsRectVisible2 igIsRectVisible2;
Undocumented in source.
igIsWindowCollapsed
da_igIsWindowCollapsed igIsWindowCollapsed;
Undocumented in source.
igIsWindowFocused
da_igIsWindowFocused igIsWindowFocused;
Undocumented in source.
igIsWindowHovered
da_igIsWindowHovered igIsWindowHovered;
Undocumented in source.
igLabelText
da_igLabelText igLabelText;
Undocumented in source.
igLabelTextV
da_igLabelTextV igLabelTextV;
Undocumented in source.
igListBox
da_igListBox igListBox;
Undocumented in source.
igListBox2
da_igListBox2 igListBox2;
Undocumented in source.
igListBoxFooter
da_igListBoxFooter igListBoxFooter;
Undocumented in source.
igListBoxHeader
da_igListBoxHeader igListBoxHeader;
Undocumented in source.
igListBoxHeader2
da_igListBoxHeader2 igListBoxHeader2;
Undocumented in source.
igLogButtons
da_igLogButtons igLogButtons;
Undocumented in source.
igLogFinish
da_igLogFinish igLogFinish;
Undocumented in source.
igLogText
da_igLogText igLogText;
Undocumented in source.
igLogToClipboard
da_igLogToClipboard igLogToClipboard;
Undocumented in source.
igLogToFile
da_igLogToFile igLogToFile;
Undocumented in source.
igLogToTTY
da_igLogToTTY igLogToTTY;
Undocumented in source.
igMemAlloc
da_igMemAlloc igMemAlloc;
Undocumented in source.
igMemFree
da_igMemFree igMemFree;
Undocumented in source.
igMenuItem
da_igMenuItem igMenuItem;
Undocumented in source.
igMenuItemPtr
da_igMenuItemPtr igMenuItemPtr;
Undocumented in source.
igNewFrame
da_igNewFrame igNewFrame;
Undocumented in source.
igNewLine
da_igNewLine igNewLine;
Undocumented in source.
igNextColumn
da_igNextColumn igNextColumn;
Undocumented in source.
igOpenPopup
da_igOpenPopup igOpenPopup;
Undocumented in source.
igPlotHistogram
da_igPlotHistogram igPlotHistogram;
Undocumented in source.
igPlotHistogram2
da_igPlotHistogram2 igPlotHistogram2;
Undocumented in source.
igPlotLines
da_igPlotLines igPlotLines;
Undocumented in source.
igPlotLines2
da_igPlotLines2 igPlotLines2;
Undocumented in source.
igPopAllowKeyboardFocus
da_igPopAllowKeyboardFocus igPopAllowKeyboardFocus;
Undocumented in source.
igPopButtonRepeat
da_igPopButtonRepeat igPopButtonRepeat;
Undocumented in source.
igPopClipRect
da_igPopClipRect igPopClipRect;
Undocumented in source.
igPopFont
da_igPopFont igPopFont;
Undocumented in source.
igPopID
da_igPopID igPopID;
Undocumented in source.
igPopItemWidth
da_igPopItemWidth igPopItemWidth;
Undocumented in source.
igPopStyleColor
da_igPopStyleColor igPopStyleColor;
Undocumented in source.
igPopStyleVar
da_igPopStyleVar igPopStyleVar;
Undocumented in source.
igPopTextWrapPos
da_igPopTextWrapPos igPopTextWrapPos;
Undocumented in source.
igProgressBar
da_igProgressBar igProgressBar;
Undocumented in source.
igPushAllowKeyboardFocus
da_igPushAllowKeyboardFocus igPushAllowKeyboardFocus;
Undocumented in source.
igPushButtonRepeat
da_igPushButtonRepeat igPushButtonRepeat;
Undocumented in source.
igPushClipRect
da_igPushClipRect igPushClipRect;
Undocumented in source.
igPushFont
da_igPushFont igPushFont;
Undocumented in source.
igPushIDInt
da_igPushIDInt igPushIDInt;
Undocumented in source.
igPushIDPtr
da_igPushIDPtr igPushIDPtr;
Undocumented in source.
igPushIDStr
da_igPushIDStr igPushIDStr;
Undocumented in source.
igPushIDStrRange
da_igPushIDStrRange igPushIDStrRange;
Undocumented in source.
igPushItemWidth
da_igPushItemWidth igPushItemWidth;
Undocumented in source.
igPushStyleColor
da_igPushStyleColor igPushStyleColor;
Undocumented in source.
igPushStyleColorU32
da_igPushStyleColorU32 igPushStyleColorU32;
Undocumented in source.
igPushStyleVar
da_igPushStyleVar igPushStyleVar;
Undocumented in source.
igPushStyleVarVec
da_igPushStyleVarVec igPushStyleVarVec;
Undocumented in source.
igPushTextWrapPos
da_igPushTextWrapPos igPushTextWrapPos;
Undocumented in source.
igRadioButton
da_igRadioButton igRadioButton;
Undocumented in source.
igRadioButtonBool
da_igRadioButtonBool igRadioButtonBool;
Undocumented in source.
igRender
da_igRender igRender;
Undocumented in source.
igResetMouseDragDelta
da_igResetMouseDragDelta igResetMouseDragDelta;
Undocumented in source.
igSameLine
da_igSameLine igSameLine;
Undocumented in source.
igSelectable
da_igSelectable igSelectable;
Undocumented in source.
igSelectableEx
da_igSelectableEx igSelectableEx;
Undocumented in source.
igSeparator
da_igSeparator igSeparator;
Undocumented in source.
igSetClipboardText
da_igSetClipboardText igSetClipboardText;
Undocumented in source.
igSetColorEditOptions
da_igSetColorEditOptions igSetColorEditOptions;
Undocumented in source.
igSetColumnOffset
da_igSetColumnOffset igSetColumnOffset;
Undocumented in source.
igSetColumnWidth
da_igSetColumnWidth igSetColumnWidth;
Undocumented in source.
igSetCurrentContext
da_igSetCurrentContext igSetCurrentContext;
Undocumented in source.
igSetCursorPos
da_igSetCursorPos igSetCursorPos;
Undocumented in source.
igSetCursorPosX
da_igSetCursorPosX igSetCursorPosX;
Undocumented in source.
igSetCursorPosY
da_igSetCursorPosY igSetCursorPosY;
Undocumented in source.
igSetCursorScreenPos
da_igSetCursorScreenPos igSetCursorScreenPos;
Undocumented in source.
igSetItemAllowOverlap
da_igSetItemAllowOverlap igSetItemAllowOverlap;
Undocumented in source.
igSetKeyboardFocusHere
da_igSetKeyboardFocusHere igSetKeyboardFocusHere;
Undocumented in source.
igSetMouseCursor
da_igSetMouseCursor igSetMouseCursor;
Undocumented in source.
igSetNextTreeNodeOpen
da_igSetNextTreeNodeOpen igSetNextTreeNodeOpen;
Undocumented in source.
igSetNextWindowCollapsed
da_igSetNextWindowCollapsed igSetNextWindowCollapsed;
Undocumented in source.
igSetNextWindowContentSize
da_igSetNextWindowContentSize igSetNextWindowContentSize;
Undocumented in source.
igSetNextWindowFocus
da_igSetNextWindowFocus igSetNextWindowFocus;
Undocumented in source.
igSetNextWindowPos
da_igSetNextWindowPos igSetNextWindowPos;
Undocumented in source.
igSetNextWindowSize
da_igSetNextWindowSize igSetNextWindowSize;
Undocumented in source.
igSetNextWindowSizeConstraints
da_igSetNextWindowSizeConstraints igSetNextWindowSizeConstraints;
Undocumented in source.
igSetScrollFromPosY
da_igSetScrollFromPosY igSetScrollFromPosY;
Undocumented in source.
igSetScrollHere
da_igSetScrollHere igSetScrollHere;
Undocumented in source.
igSetScrollX
da_igSetScrollX igSetScrollX;
Undocumented in source.
igSetScrollY
da_igSetScrollY igSetScrollY;
Undocumented in source.
igSetStateStorage
da_igSetStateStorage igSetStateStorage;
Undocumented in source.
igSetTooltip
da_igSetTooltip igSetTooltip;
Undocumented in source.
igSetTooltipV
da_igSetTooltipV igSetTooltipV;
Undocumented in source.
igSetWindowCollapsed
da_igSetWindowCollapsed igSetWindowCollapsed;
Undocumented in source.
igSetWindowCollapsed2
da_igSetWindowCollapsed2 igSetWindowCollapsed2;
Undocumented in source.
igSetWindowFocus
da_igSetWindowFocus igSetWindowFocus;
Undocumented in source.
igSetWindowFocus2
da_igSetWindowFocus2 igSetWindowFocus2;
Undocumented in source.
igSetWindowFontScale
da_igSetWindowFontScale igSetWindowFontScale;
Undocumented in source.
igSetWindowPos
da_igSetWindowPos igSetWindowPos;
Undocumented in source.
igSetWindowPosByName
da_igSetWindowPosByName igSetWindowPosByName;
Undocumented in source.
igSetWindowSize
da_igSetWindowSize igSetWindowSize;
Undocumented in source.
igSetWindowSize2
da_igSetWindowSize2 igSetWindowSize2;
Undocumented in source.
igShowDemoWindow
da_igShowDemoWindow igShowDemoWindow;
Undocumented in source.
igShowFontSelector
da_igShowFontSelector igShowFontSelector;
Undocumented in source.
igShowMetricsWindow
da_igShowMetricsWindow igShowMetricsWindow;
Undocumented in source.
igShowStyleEditor
da_igShowStyleEditor igShowStyleEditor;
Undocumented in source.
igShowStyleSelector
da_igShowStyleSelector igShowStyleSelector;
Undocumented in source.
igShowUserGuide
da_igShowUserGuide igShowUserGuide;
Undocumented in source.
igShutdown
da_igShutdown igShutdown;
Undocumented in source.
igSliderAngle
da_igSliderAngle igSliderAngle;
Undocumented in source.
igSliderFloat
da_igSliderFloat igSliderFloat;
Undocumented in source.
igSliderFloat2
da_igSliderFloat2 igSliderFloat2;
Undocumented in source.
igSliderFloat3
da_igSliderFloat3 igSliderFloat3;
Undocumented in source.
igSliderFloat4
da_igSliderFloat4 igSliderFloat4;
Undocumented in source.
igSliderInt
da_igSliderInt igSliderInt;
Undocumented in source.
igSliderInt2
da_igSliderInt2 igSliderInt2;
Undocumented in source.
igSliderInt3
da_igSliderInt3 igSliderInt3;
Undocumented in source.
igSliderInt4
da_igSliderInt4 igSliderInt4;
Undocumented in source.
igSmallButton
da_igSmallButton igSmallButton;
Undocumented in source.
igSpacing
da_igSpacing igSpacing;
Undocumented in source.
igText
da_igText igText;
Undocumented in source.
igTextColored
da_igTextColored igTextColored;
Undocumented in source.
igTextColoredV
da_igTextColoredV igTextColoredV;
Undocumented in source.
igTextDisabled
da_igTextDisabled igTextDisabled;
Undocumented in source.
igTextDisabledV
da_igTextDisabledV igTextDisabledV;
Undocumented in source.
igTextUnformatted
da_igTextUnformatted igTextUnformatted;
Undocumented in source.
igTextV
da_igTextV igTextV;
Undocumented in source.
igTextWrapped
da_igTextWrapped igTextWrapped;
Undocumented in source.
igTextWrappedV
da_igTextWrappedV igTextWrappedV;
Undocumented in source.
igTreeAdvanceToLabelPos
da_igTreeAdvanceToLabelPos igTreeAdvanceToLabelPos;
Undocumented in source.
igTreeNode
da_igTreeNode igTreeNode;
Undocumented in source.
igTreeNodeEx
da_igTreeNodeEx igTreeNodeEx;
Undocumented in source.
igTreeNodeExPtr
da_igTreeNodeExPtr igTreeNodeExPtr;
Undocumented in source.
igTreeNodeExStr
da_igTreeNodeExStr igTreeNodeExStr;
Undocumented in source.
igTreeNodeExV
da_igTreeNodeExV igTreeNodeExV;
Undocumented in source.
igTreeNodeExVPtr
da_igTreeNodeExVPtr igTreeNodeExVPtr;
Undocumented in source.
igTreeNodePtr
da_igTreeNodePtr igTreeNodePtr;
Undocumented in source.
igTreeNodePtrV
da_igTreeNodePtrV igTreeNodePtrV;
Undocumented in source.
igTreeNodeStr
da_igTreeNodeStr igTreeNodeStr;
Undocumented in source.
igTreeNodeStrV
da_igTreeNodeStrV igTreeNodeStrV;
Undocumented in source.
igTreePop
da_igTreePop igTreePop;
Undocumented in source.
igTreePushPtr
da_igTreePushPtr igTreePushPtr;
Undocumented in source.
igTreePushStr
da_igTreePushStr igTreePushStr;
Undocumented in source.
igUnindent
da_igUnindent igUnindent;
Undocumented in source.
igVSliderFloat
da_igVSliderFloat igVSliderFloat;
Undocumented in source.
igVSliderInt
da_igVSliderInt igVSliderInt;
Undocumented in source.
igValueBool
da_igValueBool igValueBool;
Undocumented in source.
igValueFloat
da_igValueFloat igValueFloat;
Undocumented in source.
igValueInt
da_igValueInt igValueInt;
Undocumented in source.
igValueUInt
da_igValueUInt igValueUInt;
Undocumented in source.

Meta