Home
last modified time | relevance | path

Searched refs:ImVector (Results 1 – 25 of 40) sorted by relevance

12

/third_party/flutter/skia/third_party/externals/imgui/
Dimgui_internal.h247 ImVector<int> Storage;
261 ImVector<T> Data; // Contiguous data
543ImVector<ImWchar> TextW; // edit buffer, we need to persist but can't guara…
544ImVector<char> InitialText; // backup of end-user buffer at the time of focus …
545ImVector<char> TempBuffer; // temporary buffer for callback and other other o…
626 ImVector<ImGuiColumnData> Columns;
663 ImVector<ImDrawList*> Layers[2]; // Global layers for: regular, tooltip
750ImVector<ImGuiWindow*> Windows; // Windows, sorted in display order, b…
751ImVector<ImGuiWindow*> WindowsFocusOrder; // Windows, sorted in focus order, bac…
752 ImVector<ImGuiWindow*> WindowsSortBuffer;
[all …]
Dimgui.h1167 struct ImVector struct
1179 inline ImVector() { Size = Capacity = 0; Data = NULL; } in ImVector() function
1180 …inline ImVector(const ImVector<T>& src) { Size = Capacity = 0; Data = NULL; operat… in ImVector() argument
1181 …inline ImVector<T>& operator=(const ImVector<T>& src) { clear(); resize(src.Size); memcpy(Data, …
1182 inline ~ImVector() { if (Data) ImGui::MemFree(Data); } in ~ImVector() argument
1200 …inline void swap(ImVector<T>& rhs) { int rhs_size = rhs.Size; rhs.Size = Size… in swap() argument
1397ImVector<ImWchar> InputQueueCharacters; // Queue of _characters_ input (obtained by platform b…
1564 IMGUI_API void split(char separator, ImVector<TextRange>* out) const;
1567 ImVector<TextRange> Filters;
1575 ImVector<char> Buf;
[all …]
Dimgui_draw.cpp966 static void PathBezierToCasteljau(ImVector<ImVec2>* path, float x1, float y1, float x2, float y2, f… in PathBezierToCasteljau()
1267 ImVector<ImDrawVert> new_vtx_buffer; in DeIndexAllBuffers()
1750ImVector<int> GlyphsList; // Glyph codepoints list (flattened version of GlyphsMap)
1762 static void UnpackBoolVectorToFlatIndexList(const ImBoolVector* in, ImVector<int>* out) in UnpackBoolVectorToFlatIndexList()
1788 ImVector<ImFontBuildSrcData> src_tmp_array; in ImFontAtlasBuildWithStbTruetype()
1789 ImVector<ImFontBuildDstData> dst_tmp_array; in ImFontAtlasBuildWithStbTruetype()
1870 ImVector<stbrp_rect> buf_rects; in ImFontAtlasBuildWithStbTruetype()
1871 ImVector<stbtt_packedchar> buf_packedchars; in ImFontAtlasBuildWithStbTruetype()
2060 ImVector<ImFontAtlas::CustomRect>& user_rects = atlas->CustomRects; in ImFontAtlasBuildPackCustomRects()
2063 ImVector<stbrp_rect> pack_rects; in ImFontAtlasBuildPackCustomRects()
[all …]
Dimgui_demo.cpp3066 ImVector<char*> Items;
3068 ImVector<char*> History;
3070 ImVector<const char*> Commands;
3284 ImVector<const char*> candidates; in TextEditCallback()
3382ImVector<int> LineOffsets; // Index to lines offset. We maintain this with AddLog() c…
3886 static ImVector<ImVec2> points; in ShowExampleAppCustomRendering()
3999 ImVector<MyDocument> Documents;
4130 static ImVector<MyDocument*> close_queue; in ShowExampleAppDocuments()
Dimgui.cpp998 static void AddDrawListToDrawData(ImVector<ImDrawList*>* out_list, ImDrawList* draw_lis…
999 static void AddWindowToDrawData(ImVector<ImDrawList*>* out_list, ImGuiWindow* window);
1000 static void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWind…
1478 ImVector<ImWchar> buf; in ImFileOpen()
1827 static ImGuiStorage::Pair* LowerBound(ImVector<ImGuiStorage::Pair>& data, ImGuiID key) in LowerBound()
1868 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetInt()
1881 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetFloat()
1889 ImGuiStorage::Pair* it = LowerBound(const_cast<ImVector<ImGuiStorage::Pair>&>(Data), key); in GetVoidPtr()
2001 void ImGuiTextFilter::TextRange::split(char separator, ImVector<TextRange>* out) const in split()
3573 static void AddWindowToSortBuffer(ImVector<ImGuiWindow*>* out_sorted_windows, ImGuiWindow* window) in AddWindowToSortBuffer()
[all …]
/third_party/mesa3d/src/imgui/
Dimgui_internal.h254 ImVector<int> Storage;
268 ImVector<T> Data; // Contiguous data
564ImVector<ImWchar> TextW; // edit buffer, we need to persist but can't guara…
565ImVector<char> InitialText; // backup of end-user buffer at the time of focus …
566ImVector<char> TempBuffer; // temporary buffer for callback and other other o…
647 ImVector<ImGuiColumnData> Columns;
684 ImVector<ImDrawList*> Layers[2]; // Global layers for: regular, tooltip
776ImVector<ImGuiWindow*> Windows; // Windows, sorted in display order, b…
777ImVector<ImGuiWindow*> WindowsFocusOrder; // Windows, sorted in focus order, bac…
778 ImVector<ImGuiWindow*> WindowsSortBuffer;
[all …]
Dimgui.h1175 struct ImVector struct
1187 inline ImVector() { Size = Capacity = 0; Data = NULL; } in ImVector() argument
1188 …inline ImVector(const ImVector<T>& src) { Size = Capacity = 0; Data = NULL; operat… in ImVector() function
1189 …inline ImVector<T>& operator=(const ImVector<T>& src) { clear(); resize(src.Size); memcpy(Data, …
1190 inline ~ImVector() { if (Data) ImGui::MemFree(Data); } in ~ImVector() argument
1208 …inline void swap(ImVector<T>& rhs) { int rhs_size = rhs.Size; rhs.Size = Size… in swap() argument
1404ImVector<ImWchar> InputQueueCharacters; // Queue of _characters_ input (obtained by platform b…
1571 IMGUI_API void split(char separator, ImVector<TextRange>* out) const;
1574 ImVector<TextRange> Filters;
1582 ImVector<char> Buf;
[all …]
Dimgui_draw.cpp971 static void PathBezierToCasteljau(ImVector<ImVec2>* path, float x1, float y1, float x2, float y2, f… in PathBezierToCasteljau()
1274 ImVector<ImDrawVert> new_vtx_buffer; in DeIndexAllBuffers()
1761ImVector<int> GlyphsList; // Glyph codepoints list (flattened version of GlyphsMap)
1773 static void UnpackBoolVectorToFlatIndexList(const ImBoolVector* in, ImVector<int>* out) in UnpackBoolVectorToFlatIndexList()
1799 ImVector<ImFontBuildSrcData> src_tmp_array; in ImFontAtlasBuildWithStbTruetype()
1800 ImVector<ImFontBuildDstData> dst_tmp_array; in ImFontAtlasBuildWithStbTruetype()
1881 ImVector<stbrp_rect> buf_rects; in ImFontAtlasBuildWithStbTruetype()
1882 ImVector<stbtt_packedchar> buf_packedchars; in ImFontAtlasBuildWithStbTruetype()
2072 ImVector<ImFontAtlas::CustomRect>& user_rects = atlas->CustomRects; in ImFontAtlasBuildPackCustomRects()
2075 ImVector<stbrp_rect> pack_rects; in ImFontAtlasBuildPackCustomRects()
[all …]
/third_party/skia/third_party/externals/imgui/
Dimgui_internal.h549 ImVector<ImU32> Storage;
615 ImVector<T> Buf; // Contiguous data
652 ImVector<char> Buf;
722 ImVector<ImDrawList*> Layers[2]; // Global layers for: regular, tooltip
1010ImVector<ImWchar> TextW; // edit buffer, we need to persist but can't guara…
1011ImVector<char> TextA; // temporary UTF8 buffer for callbacks and other o…
1012ImVector<char> InitialTextA; // backup of end-user buffer at the time of focus …
1298 ImVector<ImGuiOldColumnData> Columns;
1430 ImVector<ImGuiStackLevelInfo> Results;
1479ImVector<ImGuiWindow*> Windows; // Windows, sorted in display order, b…
[all …]
Dimgui.h1695 struct ImVector struct
1707 inline ImVector() { Size = Capacity = 0; Data = NULL; } in ImVector() function
1708 …inline ImVector(const ImVector<T>& src) { Size = Capacity = 0; Data = NULL; operat… in ImVector() argument
1709 …inline ImVector<T>& operator=(const ImVector<T>& src) { clear(); resize(src.Size); memcpy(Data, …
1710 …inline ~ImVector() { if (Data) IM_FREE(Data); } // Important:… in ~ImVector() argument
1732 …inline void swap(ImVector<T>& rhs) { int rhs_size = rhs.Size; rhs.Size = Size… in swap() argument
1950ImVector<ImWchar> InputQueueCharacters; // Queue of _characters_ input (obtained by platform b…
2093 IMGUI_API void split(char separator, ImVector<ImGuiTextRange>* out) const;
2096 ImVector<ImGuiTextRange>Filters;
2104 ImVector<char> Buf;
[all …]
Dimgui_draw.cpp1244 static void PathBezierCubicCurveToCasteljau(ImVector<ImVec2>* path, float x1, float y1, float x2, f… in PathBezierCubicCurveToCasteljau()
1269 static void PathBezierQuadraticCurveToCasteljau(ImVector<ImVec2>* path, float x1, float y1, float x… in PathBezierQuadraticCurveToCasteljau()
1816 ImVector<ImDrawVert> new_vtx_buffer; in DeIndexAllBuffers()
2313ImVector<int> GlyphsList; // Glyph codepoints list (flattened version of GlyphsMap)
2325 static void UnpackBitVectorToFlatIndexList(const ImBitVector* in, ImVector<int>* out) in UnpackBitVectorToFlatIndexList()
2351 ImVector<ImFontBuildSrcData> src_tmp_array; in ImFontAtlasBuildWithStbTruetype()
2352 ImVector<ImFontBuildDstData> dst_tmp_array; in ImFontAtlasBuildWithStbTruetype()
2432 ImVector<stbrp_rect> buf_rects; in ImFontAtlasBuildWithStbTruetype()
2433 ImVector<stbtt_packedchar> buf_packedchars; in ImFontAtlasBuildWithStbTruetype()
2618 ImVector<ImFontAtlasCustomRect>& user_rects = atlas->CustomRects; in ImFontAtlasBuildPackCustomRects()
[all …]
Dimgui_demo.cpp1399 ImVector<char>* my_str = (ImVector<char>*)data->UserData; in ShowDemoWindowWidgets()
1409 …static bool MyInputTextMultiline(const char* label, ImVector<char>* my_str, const ImVec2& size = I… in ShowDemoWindowWidgets()
1419 static ImVector<char> my_str; in ShowDemoWindowWidgets()
1503 static ImVector<int> active_tabs; in ShowDemoWindowWidgets()
4887 static ImVector<MyItem> items;
5107 static ImVector<MyItem> items;
5108 static ImVector<int> selection;
6226 ImVector<char*> Items;
6227 ImVector<const char*> Commands;
6228 ImVector<char*> History;
[all …]
/third_party/flutter/skia/third_party/externals/imgui/misc/freetype/
Dimgui_freetype.cpp268 ImVector<ImFontBuildSrcGlyphFT> GlyphsList;
294 ImVector<ImFontBuildSrcDataFT> src_tmp_array; in ImFontAtlasBuildWithFreeType()
295 ImVector<ImFontBuildDstDataFT> dst_tmp_array; in ImFontAtlasBuildWithFreeType()
390 ImVector<stbrp_rect> buf_rects; in ImFontAtlasBuildWithFreeType()
400 ImVector<unsigned char*> buf_bitmap_buffers; in ImFontAtlasBuildWithFreeType()
471 ImVector<stbrp_node> pack_nodes; in ImFontAtlasBuildWithFreeType()
/third_party/skia/third_party/externals/imgui/misc/freetype/
Dimgui_freetype.cpp377 ImVector<ImFontBuildSrcGlyphFT> GlyphsList;
404 ImVector<ImFontBuildSrcDataFT> src_tmp_array; in ImFontAtlasBuildWithFreeTypeEx()
405 ImVector<ImFontBuildDstDataFT> dst_tmp_array; in ImFontAtlasBuildWithFreeTypeEx()
498 ImVector<stbrp_rect> buf_rects; in ImFontAtlasBuildWithFreeTypeEx()
508 ImVector<unsigned char*> buf_bitmap_buffers; in ImFontAtlasBuildWithFreeTypeEx()
579 ImVector<stbrp_node> pack_nodes; in ImFontAtlasBuildWithFreeTypeEx()
/third_party/flutter/skia/third_party/externals/imgui/misc/natvis/
DREADME.txt3 With this, types like ImVector<> will be displayed nicely in the debugger.
/third_party/skia/third_party/externals/imgui/misc/debuggers/
DREADME.txt14 With this, types like ImVector<> will be displayed nicely in the debugger.
/third_party/flutter/skia/third_party/externals/imgui/misc/
DREADME.txt17 With this, types like ImVector<> will be displayed nicely in the debugger.
/third_party/skia/third_party/externals/imgui/misc/
DREADME.txt8 With the .natvis file, types like ImVector<> will be displayed nicely in Visual Studio debugger.
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_allegro5.cpp97 static ImVector<ImDrawVertAllegro> vertices; in ImGui_ImplAllegro5_RenderDrawData()
114 static ImVector<int> indices_converted; in ImGui_ImplAllegro5_RenderDrawData()
Dimgui_impl_opengl3.cpp334 ImVector<char> buf; in CheckShader()
352 ImVector<char> buf; in CheckProgram()
Dimgui_impl_osx.mm77 static ImVector<char> s_clipboard;
Dimgui_impl_vulkan.cpp789 ImVector<VkSurfaceFormatKHR> avail_format; in ImGui_ImplVulkanH_SelectSurfaceFormat()
830 ImVector<VkPresentModeKHR> avail_modes; in ImGui_ImplVulkanH_SelectPresentMode()
/third_party/mesa3d/src/intel/tools/imgui/
Dimgui_impl_opengl3.cpp278 ImVector<char> buf; in CheckShader()
296 ImVector<char> buf; in CheckProgram()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_allegro5.cpp129 static ImVector<ImDrawVertAllegro> vertices; in ImGui_ImplAllegro5_RenderDrawData()
146 static ImVector<int> indices_converted; in ImGui_ImplAllegro5_RenderDrawData()
Dimgui_impl_opengl3.cpp556 ImVector<char> buf; in CheckShader()
575 ImVector<char> buf; in CheckProgram()

12