diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-06-20 10:19:51 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-06-20 10:19:51 -0600 |
commit | cae4444fa179c9ed556f1d1d207967b4e72736e2 (patch) | |
tree | af4da19ccd5b1a264d5972b63742cca04a0b7cde /src | |
parent | d7a4d498e4fe2ba8036626bc97913370ad991fac (diff) |
egl: default API should be ES
Diffstat (limited to 'src')
-rw-r--r-- | src/egl/main/eglglobals.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/main/eglglobals.c b/src/egl/main/eglglobals.c index 9a077edbd7..5da59af91d 100644 --- a/src/egl/main/eglglobals.c +++ b/src/egl/main/eglglobals.c @@ -49,7 +49,7 @@ _eglNewThreadInfo(void) if (t) { t->CurrentContext = EGL_NO_CONTEXT; t->LastError = EGL_SUCCESS; - t->CurrentAPI = EGL_NONE; + t->CurrentAPI = EGL_OPENGL_ES_API; /* default, per EGL spec */ } return t; } |