Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-26 | egl: Remove _eglOpenDriver and _eglCloseDriver. | Chia-I Wu | |
_eglCloseDriver is no-op and _eglOpenDriver does nothing but call _eglMatchDriver. Export _eglMatchDriver directly. | |||
2010-01-24 | egl: Remove _eglFindAPIs. | Chia-I Wu | |
This function is not used and should have been removed by last commit. My mistake. | |||
2010-01-20 | egl: Add a simple cache for driver probe. | Chia-I Wu | |
In current design, multiple drivers will probe the same display and the best driver is determined. The cache can be used by the drivers to store and share the probed data. | |||
2010-01-20 | egl: Improve driver matching. | Chia-I Wu | |
Make drv->Probe return a score so that the matching can be done by finding the driver with the highest score. | |||
2010-01-20 | egl: Remove unused driver and display functions. | Chia-I Wu | |
Remove _eglPreloadDriver, _eglLookupDriver, and _eglSplitDisplayString. | |||
2010-01-20 | egl: Add _eglPreloadDrivers. | Chia-I Wu | |
It can be used to load the user driver specified by EGL_DRIVER, or a set of drivers specified by EGL_DISPLAY, or the default driver, and in that order. | |||
2010-01-05 | egl: Fix breakage from -fvisibility=hidden. | Chia-I Wu | |
Mark EGL API and driver functions as PUBLIC. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-21 | egl: Remove dependency on libX11. | Chia-I Wu | |
libX11 is used to determine the screen number, which is in turned used to determine the DRI driver. However, the sysfs interface for determining the DRI driver is gone, and no working driver depends on this mechanism. Display string parsing is moved to a new function, _eglSplitDisplayString. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-18 | egl: Some per-driver data should be per-display. | Chia-I Wu | |
Move some fields of _EGLDriver to _EGLDisplay. It also becomes unnecessary to pass _EGLDisplay to drivers when _eglMain is called. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-18 | egl: Change the way drivers are loaded. | Chia-I Wu | |
Driver is chosen and preloaded when eglGetDisplay is called. Later when eglInitialize is called, the same driver is matched to initialize the display. Also, add new, but unused, hooks to EGLDriver to allow a driver to probe a display or unload itself. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-18 | egl: Overhaul driver API. | Chia-I Wu | |
The motivation is so that drivers do not need to look up and check for bad display, context, and etc. It also becomes unnecessary for drivers to call the link functions. This commit makes eglapi.[ch] do the lookup and check. As a result, the driver API is overhauled, and almost all sources and drivers need update. The updates are mainly find and replace with human brains. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2008-06-20 | egl: implment EGL_LARGEST_PBUFFER query | Brian Paul | |
2008-06-19 | egl: clean up prototype code, new _eglFindAPIs() function. | Brian Paul | |
2008-06-06 | egl: make _eglChooseDRMDriver() non-static | Brian Paul | |
2008-05-30 | egl: new eglGetProcAddress() code | Brian Paul | |
The idea is to pass the call down to the device driver where an API-specific query can be made. Untested. | |||
2008-05-30 | egl: clean-up re-org of the client API state | Brian Paul | |
2008-05-29 | egl: added Name field to _EGLDriver so a driver name string can propogate up ↵ | Brian Paul | |
through EGL_VERSION string | |||
2008-05-28 | egl: remove unused Display field | Brian Paul | |
2008-05-28 | egl: move a few small functions into new eglmisc.[ch] files | Brian Paul | |
2008-05-28 | egl: make sure EGL_VERSION_STRING query returns same version as eglInitialize() | Brian Paul | |
2008-05-28 | egl: include egldefines.h | Brian Paul | |
2008-05-28 | egl: added args string to _eglMain() | Brian Paul | |
2008-05-27 | minor overhaul/re-org of driver selection/loading code | Brian Paul | |
2006-01-30 | some initial EGL 1.2 work | Brian Paul | |
2005-11-29 | Put extension flags, string into separate struct. | Brian Paul | |
2005-11-24 | Move all the EGL API function pointers into a new _egl_api struct. | Brian Paul | |
2005-08-05 | More EGL prep. No impact on anything outside of EGL | Jon Smirl | |
2005-05-17 | remove eglQueryDisplayMESA() | Brian Paul | |
2005-05-16 | use EGLint instead of unsigned long for eglCopyContextMESA, added comments | Brian Paul | |
2005-05-16 | added boolean extension flags to _EGLDriver | Brian Paul | |
2005-05-14 | Add empty placeholder for eglCopyContextMESA | Jon Smirl | |
2005-05-13 | First attempt at getting egl support up on dumb framebuffer. | Jon Smirl | |
Seems to be mostly working. Not all of egl API is implemented. | |||
2005-05-04 | sync with latest EGL_MESA_screen_surface spec (EGLScreenMESA handles) | Brian Paul | |
2005-04-22 | initial EGL code | Brian Paul | |