Updated Home (markdown)

omar
2026-06-05 14:06:50 +02:00
parent 4a54240851
commit 6f735c34b5

36
Home.md

@@ -21,11 +21,13 @@ New to Dear ImGui? Check out the [[Getting Started guide|Getting-Started]].
- [Notable branches](#notable-branches)
- [Features](#features)
- [Debug Tools](#debug-tools)
- [Rendering with ImDrawList](#rendering-with-imdrawlist)
- [ImDrawList Reference](#imdrawlist-reference)
- [Pixel-perfect Rendering Guide](#pixel-perfect-rendering-guide)
- [How Polyline Rendering is Implemented](#how-polyline-rendering-is-implemented)
- [Rendering Textures / Images](#rendering-textures--images)
- Debug Tools (Metrics/Debugger, Item Picker, Debug Log, ID Stack Tool...).
- Error Handling
- [Rendering](#rendering)
- ImDrawList Reference
- Rendering Textures / Images
- Pixel-perfect Rendering Guide
- How Polyline Rendering is Implemented
- [Fonts / Text](#fonts--text)
- [Tables](#tables)
- [Multi-Select](#multi-Select)
@@ -113,23 +115,12 @@ New to Dear ImGui? Check out the [[Getting Started guide|Getting-Started]].
- See [[Debug Tools|Debug-Tools]] wiki page explaining `ShowMetricsWindow()`, `ShowDebugLogWindow()`, `ShowIdStackToolWindow()`, Item Picker..
- See [[Error Handling|Error-Handling]] wiki page about ways to configure error handling and state recovery.
### Rendering with `ImDrawList`
### Rendering
#### ImDrawList Reference
- https://github.com/ocornut/imgui/wiki/Draw-List
#### Pixel-perfect Rendering Guide:
- https://github.com/ocornut/imgui/wiki/Pixel-Perfect-Rendering
#### How Polyline Rendering is Implemented
- https://github.com/ocornut/imgui/wiki/Polyline-Rendering
#### Rendering Textures / Images
- Article: [[Image Loading and Displaying Examples|Image-Loading-and-Displaying-Examples]] (helpful if you are confused about `ImTextureID`).
- ImDrawList Reference: [[Draw-List]]
- Pixel-perfect Rendering Guide: [[Pixel-Perfect-Rendering]]
- How Polyline Rendering is Implemented: [[Polyline-Rendering]]
- Rendering Textures / Images: [[Image Loading and Displaying Examples|Image-Loading-and-Displaying-Examples]] (helpful if you are confused about `ImTextureID`).
### Fonts / Text
@@ -150,8 +141,7 @@ New to Dear ImGui? Check out the [[Getting Started guide|Getting-Started]].
- [[About Docking|Docking]]
- Search in Issues: [docking](https://github.com/ocornut/imgui/issues?q=label%3Adocking+)
- [#2109](https://github.com/ocornut/imgui/issues/2109) Main Docking topic
- [List of legacy third-party Docking extensions](https://github.com/ocornut/imgui/wiki/Docking#legacy-third-party-docking-extensions) (prior to official docking: LumixEngine, imguiDock, ImWindow, imgui_wm, etc.)
- [#2109](https://github.com/ocornut/imgui/issues/2109) Initial Docking topic
### Multi-viewports