mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 17:10:26 +01:00
egl: fix _eglGlobal initialization for Windows
This commit is contained in:
parent
2783f3bfab
commit
655ca5afad
1 changed files with 4 additions and 3 deletions
|
|
@ -2,9 +2,10 @@
|
|||
#include <stdlib.h>
|
||||
#include "eglglobals.h"
|
||||
|
||||
|
||||
struct _egl_global _eglGlobal = { .Initialized = EGL_FALSE };
|
||||
|
||||
struct _egl_global _eglGlobal =
|
||||
{
|
||||
EGL_FALSE
|
||||
};
|
||||
|
||||
/**
|
||||
* Init the fields in the _eglGlobal struct
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue