blob: 5ebb914ca723c97af8730e7dc0b99ad16f3a60d5 (
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
|
#ifndef EGLGLOBALS_INCLUDED
#define EGLGLOBALS_INCLUDED
#include "egltypedefs.h"
#include "egldisplay.h"
#include "eglcurrent.h"
#include "eglmutex.h"
/**
* Global library data
*/
struct _egl_global
{
_EGLMutex *Mutex;
/* the list of all displays */
_EGLDisplay *DisplayList;
EGLScreenMESA FreeScreenHandle;
EGLint NumDrivers;
_EGLDriver *Drivers[10];
EGLint NumAtExitCalls;
void (*AtExitCalls[10])(void);
};
extern struct _egl_global _eglGlobal;
extern void
_eglAddAtExitCall(void (*func)(void));
#endif /* EGLGLOBALS_INCLUDED */
|