win32_tls.c
Go to the documentation of this file.
1 //========================================================================
2 // GLFW 3.1 Win32 - www.glfw.org
3 //------------------------------------------------------------------------
4 // Copyright (c) 2002-2006 Marcus Geelnard
5 // Copyright (c) 2006-2010 Camilla Berglund <elmindreda@elmindreda.org>
6 //
7 // This software is provided 'as-is', without any express or implied
8 // warranty. In no event will the authors be held liable for any damages
9 // arising from the use of this software.
10 //
11 // Permission is granted to anyone to use this software for any purpose,
12 // including commercial applications, and to alter it and redistribute it
13 // freely, subject to the following restrictions:
14 //
15 // 1. The origin of this software must not be misrepresented; you must not
16 // claim that you wrote the original software. If you use this software
17 // in a product, an acknowledgment in the product documentation would
18 // be appreciated but is not required.
19 //
20 // 2. Altered source versions must be plainly marked as such, and must not
21 // be misrepresented as being the original software.
22 //
23 // 3. This notice may not be removed or altered from any source
24 // distribution.
25 //
26 //========================================================================
27 
28 #include "internal.h"
29 
30 
34 
36 {
37  _glfw.win32_tls.context = TlsAlloc();
38  if (_glfw.win32_tls.context == TLS_OUT_OF_INDEXES)
39  {
41  "Win32: Failed to allocate TLS index");
42  return GL_FALSE;
43  }
44 
45  _glfw.win32_tls.allocated = GL_TRUE;
46  return GL_TRUE;
47 }
48 
50 {
51  if (_glfw.win32_tls.allocated)
52  TlsFree(_glfw.win32_tls.context);
53 }
54 
56 {
57  TlsSetValue(_glfw.win32_tls.context, context);
58 }
59 
60 
64 
66 {
67  return TlsGetValue(_glfw.win32_tls.context);
68 }
69 
_GLFWwindow * _glfwPlatformGetCurrentContext(void)
Returns the window whose context is current on the calling thread.
Definition: win32_tls.c:65
_GLFWctxconfig context
Definition: internal.h:335
void _glfwSetContextTLS(_GLFWwindow *context)
Definition: win32_tls.c:55
_GLFWlibrary _glfw
All global data protected by _glfwInitialized. This should only be touched after a call to glfwInit t...
#define GLFW_PLATFORM_ERROR
A platform-specific error occurred that does not match any of the more specific categories.
Definition: glfw3.h:569
void _glfwInputError(int error, const char *format,...)
Notifies shared code of an error.
int _glfwCreateContextTLS(void)
Definition: win32_tls.c:35
Window and context structure.
Definition: internal.h:232
void _glfwDestroyContextTLS(void)
Definition: win32_tls.c:49


librealsense
Author(s): Sergey Dorodnicov , Mark Horn , Reagan Lopez
autogenerated on Fri Mar 13 2020 03:16:18