From 1ca6e5b59faa72ed487e5fe17d2923c15955b8b8 Mon Sep 17 00:00:00 2001 From: omar Date: Thu, 25 Apr 2019 12:01:01 +0200 Subject: [PATCH] Examples: Glut: Added note about missing cursor support. (#2375, #2465) --- examples/imgui_impl_glut.cpp | 1 + examples/imgui_impl_glut.h | 1 + 2 files changed, 2 insertions(+) diff --git a/examples/imgui_impl_glut.cpp b/examples/imgui_impl_glut.cpp index d8bd7498b..546a7b85d 100644 --- a/examples/imgui_impl_glut.cpp +++ b/examples/imgui_impl_glut.cpp @@ -6,6 +6,7 @@ // Issues: // [ ] Platform: GLUT is unable to distinguish e.g. Backspace from CTRL+H or TAB from CTRL+I +// [ ] Platform: Missing mouse cursor shape/visibility support. // [ ] Platform: Missing clipboard support (not supported by Glut). // [ ] Platform: Missing gamepad support. diff --git a/examples/imgui_impl_glut.h b/examples/imgui_impl_glut.h index 8fde9bab8..89be99935 100644 --- a/examples/imgui_impl_glut.h +++ b/examples/imgui_impl_glut.h @@ -6,6 +6,7 @@ // Issues: // [ ] Platform: GLUT is unable to distinguish e.g. Backspace from CTRL+H or TAB from CTRL+I +// [ ] Platform: Missing mouse cursor shape/visibility support. // [ ] Platform: Missing clipboard support (not supported by Glut). // [ ] Platform: Missing gamepad support.