diff options
author | Chia-I Wu <[email protected]> | 2011-01-07 16:30:08 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2011-01-10 11:50:34 +0800 |
commit | c98ea26e16b6458b4385d6558936696e4d099455 (patch) | |
tree | ca75d5d0355fe29e95375db7683e13e26e80fc5b /src/egl/main/egldriver.h | |
parent | 15f0223931e32ef5ff82b39a2b6c433400edbd9d (diff) |
egl: Make egl_dri2 and egl_glx built-in drivers.
These two drivers are small in size. Making them built-in should
simplify packaging.
Diffstat (limited to 'src/egl/main/egldriver.h')
-rw-r--r-- | src/egl/main/egldriver.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/egl/main/egldriver.h b/src/egl/main/egldriver.h index 1a0aaad1f8c..651788cb7ae 100644 --- a/src/egl/main/egldriver.h +++ b/src/egl/main/egldriver.h @@ -64,6 +64,14 @@ struct _egl_driver }; +extern _EGLDriver * +_eglBuiltInDriverDRI2(const char *args); + + +extern _EGLDriver * +_eglBuiltInDriverGLX(const char *args); + + PUBLIC _EGLDriver * _eglMain(const char *args); |