From 11e2741ec46207467932a8ab75425a9223a8d111 Mon Sep 17 00:00:00 2001 From: John-Mark Allen Date: Sun, 4 Jul 2021 17:14:14 +0100 Subject: [PATCH] Comment --- imgui-glow-renderer/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/imgui-glow-renderer/src/lib.rs b/imgui-glow-renderer/src/lib.rs index 8baec06..16befd1 100644 --- a/imgui-glow-renderer/src/lib.rs +++ b/imgui-glow-renderer/src/lib.rs @@ -614,6 +614,8 @@ impl TextureMap for imgui::Textures { /// imgui, where an attempt is made to save and restore the OpenGL context state /// before and after rendering. /// +/// If you're writing your own renderer, you can likely streamline most of this. +/// /// It is unlikely that any such attempt will be comprehensive for all possible /// applications, due to the complexity of OpenGL and the possibility of /// arbitrary extensions. However, it remains as a useful tool for quickly