summaryrefslogtreecommitdiff
path: root/src/egl/main/egldriver.c
AgeCommit message (Collapse)AuthorFilesLines
2011-07-02egl: add copyright noticesChia-I Wu1-0/+30
The list of copyright holders could be incomplete. Please update directly or notify me if your name is missing.
2011-01-30egl: Make the transition to built-in drivers more smooth.Chia-I Wu1-5/+24
When the user sets EGL_DRIVER to egl_dri2 (or egl_glx), make sure the built-in driver is used. The user might leave the outdated egl_dri2.so (or egl_glx.so) on the filesystem and we do not want to load it.
2011-01-13egl: Improve driver selection.Chia-I Wu1-0/+5
The idea is to be able to match a driver using the following order try egl_gallium with hw renderer try egl_dri2 try egl_gallium with sw renderer try egl_glx given the module list egl_gallium egl_dri2 egl_glx For that, UseFallback initialization option is added. The module list is matched twice: with the option unset and with the option set. In the first pass, egl_gallium skips its sw renderer and egl_glx rejects to initialize since UseFallback is not set. In the second pass, egl_gallium skips its hw renderer and egl_dri2 rejects to initialize since UseFallback is set. The process stops at the first driver that initializes the display.
2011-01-13egl: Simplify driver matching.Chia-I Wu1-73/+48
Add initialization options that drv->API.Initialize should support. Replace drv->Probe by TestOnly initialization option and simplify _eglMatchDriver.
2011-01-13egl: Cleanup _EGLDisplay initialization.Chia-I Wu1-5/+3
Reorder/rename and document the fields that should be set by the driver during initialization. Drop the major/minor arguments from drv->API.Initialize.
2011-01-12egl: When EGL_DRIVER is set, do not add other drivers.Chia-I Wu1-5/+14
Setting EGL_DRIVER forces the driver to be loaded, as documented. There should be no fallbacks.
2011-01-12scons: Updates for targets/egl-static.Chia-I Wu1-0/+3
Update SConscripts to re-enable or add support for EGL on windows and x11 platforms respectively. targets/egl-gdi is replaced by targets/egl-static, where "-static" means pipe drivers and state trackers are linked to statically by egl_gallium, and egl_gallium is a built-in driver of libEGL. There is no more egl_gallium.dll on Windows.
2011-01-12targets/egl-static: New EGL target for scons.Chia-I Wu1-6/+14
This target is based on and replaces egl-gdi. It is suitable for both windows and x11.
2011-01-10egl: Make egl_dri2 and egl_glx built-in drivers.Chia-I Wu1-85/+50
These two drivers are small in size. Making them built-in should simplify packaging.
2010-12-12egl: Do not unload drivers.Chia-I Wu1-5/+11
When the driver is the last reference to libEGL.so, unloading it will cause libEGL.so to be unmapped and give problems. Disable the unloading for now. Still have to figure out the right timing to unload drivers.
2010-11-02egl: Rework _eglGetSearchPath.Chia-I Wu1-19/+46
So that the directory part of EGL_DRIVER, if exists, is prepended to the search path. This commit also adds a sanity check to _eglLog.
2010-10-22egl: Move fallback routines to eglfallbacks.c.Chia-I Wu1-79/+0
We do not want them to be all over the places.
2010-09-30egl: remove duplicated includeNicolas Kaiser1-1/+0
Remove duplicated include. Signed-off-by: Brian Paul <brianp@vmware.com>
2010-08-17egl: Add support for EGL_KHR_reusable_sync.Chia-I Wu1-0/+9
Individual drivers still need to support and enable the extension.
2010-07-31egl: Add checks for EGL_MESA_screen_surface.Chia-I Wu1-1/+0
This allows Mesa EGL to be compiled with eglext.h that does not define EGL_MESA_screen_surface.
2010-07-06egl: Remove unnecessary headers.Vinson Lee1-1/+0
2010-07-06egl: Rework driver loading.Chia-I Wu1-154/+334
Driver loading is now splitted into two stages. In the first stage, an _EGLModule is created for each driver: user driver, default drivers, and all files in the search directories that start with "egl_". Modules are not loaded at this stage. In the second stage, each module is loaded to initialize a display. The process stops at the first module that can initialize the display. If eglGetProcAddress is called before eglInitialize, the same code path will be taken to find the first module that supports EGL_DEFAULT_DISPLAY. Because we do not want to initialize the display, drv->Probe is used instead in this case.
2010-06-30egl: Make _eglUnloadDrivers no-op on Windows.Chia-I Wu1-0/+4
Windows unloads DLLs before atexit. Make _eglUnloadDrivers no-op on Windows for now.
2010-06-29egl: Remove st/egl probe code.Chia-I Wu1-48/+0
It is no longer needed.
2010-06-29egl: Do not call drv->Initialize with global mutex locked.Chia-I Wu1-3/+9
2010-06-29st/egl: Build a single EGL driver.Chia-I Wu1-82/+3
This change makes st/egl build a single egl_gallium.so and multiple st_<API>.so and pipe_<HW>.so. When a display is initialized, the corresponding pipe driver will be loaded. When a context is created, the corresponding state tracker will be loaded. Unlike DRI drivers, no ABI compatibility is maintained. egl_gallium, pipe drivers and state trackers should always be distributed as a single package. As such, there is only a single src/gallium/targets/egl/ that builds everything for the package.
2010-06-29st/egl: One driver per hardware.Chia-I Wu1-36/+6
Merge multiple egl_<platform>_<pipe>.so into a single egl_gallium_<pipe>.so. The environment variable EGL_PLATFORM is now used to modify the return value of _eglGetNativePlatform.
2010-06-23egl: Introduce platform displays internally.Chia-I Wu1-0/+10
This commit introduces type-safe platform displays internally. A platform display consists of a generic pointer and an enum that specifies the platform. An EGLDisplay is created from a platform display. Native displays become platform displays whose platform is determined by _eglGetNativePlatform(). Platform windows and pixmaps may also be introduced if needed.
2010-06-17egl: s/EGL_DISPLAY/EGL_PLATFORM/.Chia-I Wu1-8/+11
A platform is already used to mean a window system in EGL. No need to use a different term.
2010-06-17egl: s/_EGL_PLATFORM/_EGL_OS/ and s/POSIX/UNIX/.Chia-I Wu1-12/+12
A platform means a native window system in EGL. Use OS that follows Gallium instead.
2010-05-31egl: Use SConscript for Windows build.Chia-I Wu1-4/+6
Fix several portability issues and add SConscript for Windows build.
2010-05-27egl: Return NULL if we fail to load a default driverKristian Høgsberg1-1/+1
2010-05-13egl: Allow a prioritized list of default driversKristian Høgsberg1-16/+32
When there is no user driver or any matching display drivers we fall back to the default driver. This patch lets us have a list of default drivers instead of just one. The drivers are loaded in turn and we attempt to initialize the display. If it fails we unload the driver and move on to the next one. Compared to the display driver mechanism, this avoids loading a number of drivers and then only using one. Also, we call Initialize to see if the driver will work instead of relying on Probe. To know for sure that a driver will work, Probe really have to do a full Initialize, so we will just use Initialize directly.
2010-05-13egl: Drop broken _EGL_PLATFORM_NO_OS codeKristian Høgsberg1-32/+0
It would do strlen(library_suffix()) in _eglLoaderFile(), with library_suffix() returning NULL. So obviuosly not used or tested.
2010-05-13egl: Don't try to load driver basename if the platform needs a suffixKristian Høgsberg1-3/+5
That is, don't dlopen(egl_glx) when we know we need to append .so.
2010-05-08egl: Add _eglSearchPathForEach.Chia-I Wu1-0/+15
The function can be used by a driver to check each search path of EGL.
2010-02-19egl: Silence warnings when compiled with -pedantic.Chia-I Wu1-1/+7
Just follow gcc's advices here.
2010-02-17egl: Revisit global data locking.Chia-I Wu1-1/+14
Lock the global mutex in _eglPreloadDrivers and _eglAllocScreenHandle. Add comments to why certain pathes do not need locking.
2010-02-04egl: fix wrong argument. Use loader_data instead of loaderIgor Oliveira1-1/+1
2010-02-03egl: Rename _eglPreloadForEach callbacks.Chia-I Wu1-12/+12
Rename _eglPreloadFile to _eglLoaderFile, and _eglPreloadFile to _eglLoaderFile. There are several _eglPreload* functions. The callbacks do not belong to them and it should be better to give them a different prefix.
2010-02-03egl: Fix a potential segfault in driver suffix matching.Chia-I Wu1-3/+5
The driver suffix might be NULL on some platforms. Perform the matching only when there is a suffix.
2010-02-03egl: Remove unnecessary #ifdef's.Chia-I Wu1-8/+0
There were some refactorings with the addition of EGL_DRIVERS_PATH. They made some platform #ifdef's unnecessary.
2010-02-03egl: Ignore certain environment variables when setuid/setgid.Chia-I Wu1-2/+16
Specifically, ignore EGL_DRIVERS_PATH when an application is setuid/setgid. And ignore EGL_DRIVER when there is a slash in it.
2010-02-03egl: Add EGL_DRIVERS_PATH environment variable.Chia-I Wu1-99/+191
EGL_DRIVERS_PATH gives a list of colon-separated directories. The given directories will be searched when preloading drivers. This is based on Mike Stroyan's patch, which honors the variable in _eglPreloadDisplayDrivers. It is extended to honor the variable also in _eglPreloadUserDriver and _eglPreloadDefaultDriver in this version.
2010-01-31egl: Remove unnecessary headers.Vinson Lee1-1/+0
2010-01-30egl: Clean up header inclusions.Chia-I Wu1-0/+1
Mainly to remove eglcurrent.h and egldisplay.h from eglglobals.h.
2010-01-26egl: Remove _eglOpenDriver and _eglCloseDriver.Chia-I Wu1-22/+1
_eglCloseDriver is no-op and _eglOpenDriver does nothing but call _eglMatchDriver. Export _eglMatchDriver directly.
2010-01-25egl: Add support for EGL_KHR_image.Chia-I Wu1-0/+6
Individual drivers still need to implement the API hooks.
2010-01-24egl: Add and use make_library_path.Chia-I Wu1-27/+49
Add a platform specific function to turn a library name to a library path. It is used to convert EGL_DRIVER or the default driver to a library path that can be loaded.
2010-01-24egl: Remove _eglFindAPIs.Chia-I Wu1-52/+0
This function is not used and should have been removed by last commit. My mistake.
2010-01-22egl: Remove egl_softpipe.Chia-I Wu1-1/+1
With the addition egl_x11_swrast, egl_softpipe is sort of deprecated. The new driver serves the same purpose as egl_softpipe does. It is based on egl_g3d and provides more features.
2010-01-20egl: Add a simple cache for driver probe.Chia-I Wu1-0/+48
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-20egl: Improve driver matching.Chia-I Wu1-16/+19
Make drv->Probe return a score so that the matching can be done by finding the driver with the highest score.
2010-01-20egl: Rename _EGL_PLATFORM_X to _EGL_PLATFORM_POSIX.Chia-I Wu1-8/+8
The macro is used to determine if dlfcn.h or dirent.h is available. POSIX is a better name than X in such case.
2010-01-20egl: Remove unused driver and display functions.Chia-I Wu1-114/+0
Remove _eglPreloadDriver, _eglLookupDriver, and _eglSplitDisplayString.