summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/angle/src/libGLESv2/global_state.cpp
blob: 686f0bf49bc070ad3bfd814d235d6f9c96053774 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
//
// Copyright(c) 2014 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//

// global_state.cpp : Implements functions for querying the thread-local GL and EGL state.

#include "libGLESv2/global_state.h"

#include "libANGLE/Context.h"
#include "libANGLE/Error.h"

#include "common/debug.h"
#include "common/platform.h"
#include "common/tls.h"

namespace
{

static TLSIndex currentTLS = TLS_INVALID_INDEX;

struct Current
{
    EGLint error;
    EGLenum API;
    egl::Display *display;
    egl::Surface *drawSurface;
    egl::Surface *readSurface;
    gl::Context *context;
};

Current *AllocateCurrent()
{
    ASSERT(currentTLS != TLS_INVALID_INDEX);
    if (currentTLS == TLS_INVALID_INDEX)
    {
        return NULL;
    }

    Current *current = new Current();
    current->error = EGL_SUCCESS;
    current->API = EGL_OPENGL_ES_API;
    current->display = reinterpret_cast<egl::Display*>(EGL_NO_DISPLAY);
    current->drawSurface = reinterpret_cast<egl::Surface*>(EGL_NO_SURFACE);
    current->readSurface = reinterpret_cast<egl::Surface*>(EGL_NO_SURFACE);
    current->context = reinterpret_cast<gl::Context*>(EGL_NO_CONTEXT);

    if (!SetTLSValue(currentTLS, current))
    {
        ERR("Could not set thread local storage.");
        return NULL;
    }

    return current;
}

void DeallocateCurrent()
{
    Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));
    SafeDelete(current);
    SetTLSValue(currentTLS, NULL);
}

Current *GetCurrentData()
{
    // Create a TLS index if one has not been created for this DLL
    if (currentTLS == TLS_INVALID_INDEX)
    {
        currentTLS = CreateTLSIndex();
    }

    Current *current = reinterpret_cast<Current*>(GetTLSValue(currentTLS));

    // ANGLE issue 488: when the dll is loaded after thread initialization,
    // thread local storage (current) might not exist yet.
    return (current ? current : AllocateCurrent());
}

#ifdef ANGLE_PLATFORM_WINDOWS
extern "C" BOOL WINAPI DllMain(HINSTANCE, DWORD reason, LPVOID)
{
    switch (reason)
    {
      case DLL_PROCESS_ATTACH:
        currentTLS = CreateTLSIndex();
        if (currentTLS == TLS_INVALID_INDEX)
        {
            return FALSE;
        }
        AllocateCurrent();
        break;

      case DLL_THREAD_ATTACH:
        AllocateCurrent();
        break;

      case DLL_THREAD_DETACH:
        DeallocateCurrent();
        break;

      case DLL_PROCESS_DETACH:
        DeallocateCurrent();
        if (currentTLS != TLS_INVALID_INDEX)
        {
            DestroyTLSIndex(currentTLS);
            currentTLS = TLS_INVALID_INDEX;
        }
        break;
    }

    return TRUE;
}
#endif

}

namespace gl
{

Context *GetGlobalContext()
{
    Current *current = GetCurrentData();

    return current->context;
}

Context *GetValidGlobalContext()
{
    gl::Context *context = GetGlobalContext();
    if (context)
    {
        if (context->isContextLost())
        {
            context->recordError(gl::Error(GL_OUT_OF_MEMORY, "Context has been lost."));
            return nullptr;
        }
        else
        {
            return context;
        }
    }
    return nullptr;
}

}

namespace egl
{

void SetGlobalError(const Error &error)
{
    Current *current = GetCurrentData();

    current->error = error.getCode();
}

EGLint GetGlobalError()
{
    Current *current = GetCurrentData();

    return current->error;
}

EGLenum GetGlobalAPI()
{
    Current *current = GetCurrentData();

    return current->API;
}

void SetGlobalAPI(EGLenum API)
{
    Current *current = GetCurrentData();

    current->API = API;
}

void SetGlobalDisplay(Display *dpy)
{
    Current *current = GetCurrentData();

    current->display = dpy;
}

Display *GetGlobalDisplay()
{
    Current *current = GetCurrentData();

    return current->display;
}

void SetGlobalDrawSurface(Surface *surface)
{
    Current *current = GetCurrentData();

    current->drawSurface = surface;
}

Surface *GetGlobalDrawSurface()
{
    Current *current = GetCurrentData();

    return current->drawSurface;
}

void SetGlobalReadSurface(Surface *surface)
{
    Current *current = GetCurrentData();

    current->readSurface = surface;
}

Surface *GetGlobalReadSurface()
{
    Current *current = GetCurrentData();

    return current->readSurface;
}

void SetGlobalContext(gl::Context *context)
{
    Current *current = GetCurrentData();

    current->context = context;
}

gl::Context *GetGlobalContext()
{
    Current *current = GetCurrentData();

    return current->context;
}

}