From d00579bf6099fd49754d9500491312ed3556dbe5 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 5 Nov 2015 11:38:45 +0100 Subject: [PATCH] Clarify pre-initialization threading limitations --- docs/intro.dox | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/intro.dox b/docs/intro.dox index dc0f0742..4c0b60f6 100644 --- a/docs/intro.dox +++ b/docs/intro.dox @@ -203,9 +203,9 @@ functions not on this list will not be made non-reentrant. @subsection thread_safety Thread safety Most GLFW functions may only be called from the main thread, but some may be -called from any thread. However, no GLFW function may be called from any other -thread until GLFW has been successfully initialized on the main thread, -including functions that may called before initialization. +called from any thread. However, no GLFW function may be called from any thread +but the main thread until GLFW has been successfully initialized, including +functions that may called before initialization. The reference documentation for every GLFW function states whether it is limited to the main thread.