summaryrefslogtreecommitdiff
path: root/src/egl/drivers/dri/egldri.c
AgeCommit message (Collapse)Author
2010-09-09egl: Remove old egldri driverKristian Høgsberg
This driver doesn't work with any of the DRI drivers in the source tree.
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg
2010-01-04Remove leftover __DRI{screen,drawable,context}Private referencesKristian Høgsberg
As part of the DRI driver interface rewrite I merged __DRIscreenPrivate and __DRIscreen, and likewise for __DRIdrawablePrivate and __DRIcontextPrivate. I left typedefs in place though, to avoid renaming all the *Private use internal to the driver. That was probably a mistake, and it turns out a one-line find+sed combo can do the mass rename. Better late than never.
2009-08-03egl: Replace IsBound by a pointer to the binding.Chia-I Wu
IsBound tells if a context or surface is current. What it does not tell is, to which thread a context is current, or to which context a surface is current. This commit replaces IsBound by a pointer to the binding thread or context. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-07-17egl: Remove redundant DeletePending flag.Chia-I Wu
A context or surface that is neither linked to a display nor current to a thread should be destroyed. Therefore, an unlinked context or surface implies a pending delete automatically. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2009-07-17egl: Use the link functions to manage resources.Chia-I Wu
This commit uses the newly introduced link functions to manage EGL contexts and surfaces. As a result of this, the API for drivers are changed. All drivers are updated for the change. Signed-off-by: Chia-I Wu <olvaffe@gmail.com>
2008-06-05egl: minor tweaksBrian Paul
2008-05-29comments in _eglMain()Brian Paul
2008-05-28egl: pass args to _eglOpenDriver()Brian Paul
2008-05-28egl: added args string to _eglMain()Brian Paul
2008-05-28prototype new code to map card number to driver nameBrian Paul
2008-05-27include eglconfigutil.hBrian Paul
2008-05-27misc updates, clean-ups, remove dependency on mtypes.hBrian Paul
2005-12-30fixup stamp so driver updates drawable infoDave Airlie
2005-12-10Rename eglDRIShowSurfaceMESA.Brian Paul
s/_eglAddMode/_eglAddNewMode/
2005-11-29Put extension flags, string into separate struct.Brian Paul
2005-11-29clean up the drmGetMap/drmMap codeBrian Paul
2005-11-29apparently need to load colormap after setting the mode to make it work reliablyBrian Paul
2005-11-28Lots of fixes, clean-ups, new comments, etc.Brian Paul
To set the FBdev video mode, need to add a \n char to the string.
2005-11-24use _egl_api struct, make some functions staticBrian Paul
2005-08-04New files for radeon egl driver.Jon Smirl
Still a work in progress.