From 02ebfa21bcc2051f8a8498345372d09ad55700c8 Mon Sep 17 00:00:00 2001 From: Omar C Date: Sun, 10 Aug 2014 23:07:54 +0100 Subject: [PATCH] Update README.md --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d9b891b..0aec0029 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,17 @@ ImGui ===== -ImGui is a bloat-free graphical user interface library for C/C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "Immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. +ImGui is a bloat-free graphical user interface library for C/C++. It is portable, renderer agnostic and carries minimal amount of dependencies (only 3 files are needed). It is based on an "immediate" graphical user interface paradigm which allows you to build simple user interfaces with ease. -ImGui is designed to allow programmers to create "content creation" or "debug" tools (as opposed to tools for the average end-user). As thus, it is lacking certain features normally found in more high-level libraries, such as string localisation. +ImGui is designed to allow programmers to create "content creation" or "debug" tools (as opposed to tools for the average end-user). It favors simplicity and thus lacks certain features normally found in more high-level libraries, such as string localisation. -A simple usage example: +Usage example: ![screenshot of sample code alongside its output with ImGui](/web/code_sample_01.png?raw=true) +ImGui output vertex buffer and simple command-list that you can render in application. Refer to the sample applications in the examples/ folder for instructions on how to integrate ImGui within your existing codebase. + + Gallery -------