From f60af24be798723829478f726da53471c38a20f1 Mon Sep 17 00:00:00 2001 From: Chia-I Wu Date: Mon, 11 Oct 2010 17:58:10 +0800 Subject: android: Add new classic EGL driver for Android. --- src/egl/main/egldriver.c | 3 +++ src/egl/main/egldriver.h | 4 ++++ 2 files changed, 7 insertions(+) (limited to 'src/egl/main') diff --git a/src/egl/main/egldriver.c b/src/egl/main/egldriver.c index b75e8b6a2c..5667f48764 100644 --- a/src/egl/main/egldriver.c +++ b/src/egl/main/egldriver.c @@ -40,6 +40,9 @@ const struct { #ifdef _EGL_BUILT_IN_DRIVER_GALLIUM { "egl_gallium", _eglBuiltInDriverGALLIUM }, #endif +#ifdef _EGL_BUILT_IN_DRIVER_ANDROID + { "egl_android", _eglBuiltInDriverANDROID }, +#endif #ifdef _EGL_BUILT_IN_DRIVER_DRI2 { "egl_dri2", _eglBuiltInDriverDRI2 }, #endif diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index 3cde102d12..7db2fcbc4c 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -58,6 +58,10 @@ extern _EGLDriver * _eglBuiltInDriverGALLIUM(const char *args); +extern _EGLDriver * +_eglBuiltInDriverANDROID(const char *args); + + extern _EGLDriver * _eglBuiltInDriverDRI2(const char *args); -- cgit v1.2.3