From 165c3b892db859490fab0dbab23f2bf5ec1598d8 Mon Sep 17 00:00:00 2001 From: Evan Pezent Date: Fri, 29 May 2020 20:43:05 -0500 Subject: [PATCH] Update README.md --- README.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/README.md b/README.md index 09e5446..bbdb46a 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,3 @@ A: Yes, you can use the C binding, [cimplot](https://github.com/cimgui/cimplot) ## Special Notes - By default, no anti-aliasing is done on line plots for performance reasons. If you use 4x MSAA, then you likely won't even notice. However, you can re-enable AA with the `ImPlotFlags_AntiAliased` flag. - If you plan to render several thousands lines or points, then you should consider enabling 32-bit indices by uncommenting `#define ImDrawIdx unsigned int` in your `imconfig.h` file, OR handling the `ImGuiBackendFlags_RendererHasVtxOffset` flag in your renderer (the official OpenGL3 renderer supports this). If you fail to do this, then you may at some point hit the maximum number of indices that can be rendered. - -## See Also -[ImPlot discussion](https://github.com/ocornut/imgui/issues/3173) - ImPlot discussion issue at the official ImGui repository - -[imgui-plot](https://github.com/soulthreads/imgui-plot) - an alternate plotting widget by soulthreads