Age | Commit message (Collapse) | Author | |
---|---|---|---|
2005-06-02 | oops, undo previous change | Brian Paul | |
2005-06-02 | start removing old (pre-renderbuffer) span code | Brian Paul | |
2005-05-05 | Fix up origin in dri/fb driver | Jon Smirl | |
Calculated fbBPP | |||
2005-04-13 | Revert revision 1.13. This allows server-side libGLcore (in X.org) to build | Ian Romanick | |
with Mesa CVS. This change was wrong in the first place, and the issue that necessitated it has been resolved. For more background on the problem see: http://marc.theaimsgroup.com/?l=mesa3d-dev&m=111333880529935&w=2 | |||
2005-02-14 | fix some signed vs unsigned warnings | Dave Airlie | |
2005-01-31 | Bug #2428: #ifdef GLX_DIRECT_RENDERING in DRI drivers is pointless. | Adam Jackson | |
2005-01-12 | Simplify usage of drmHash functions and fix bug in | Keith Whitwell | |
__driGarbageCollectDrawables which would get confused while walking the hash values. | |||
2004-12-14 | uint*t -> u_int*t changes | Alan Hourihane | |
2004-12-08 | Use union type to avoid strict aliasing problems. | Alan Hourihane | |
2004-10-27 | Bug #1713: Some rare libGL's have __glXFindDRIScreen defined but do not | Adam Jackson | |
export it via glXGetProcAddress. These are not supported anymore, so print an error message to that effect. | |||
2004-08-12 | Fix dri_util.c build with new headers. | Eric Anholt | |
Submitted by: John Lightsey <john@nixnuts.net> | |||
2004-06-29 | First phase of TLS work. At this point SPARC assembly dispatch is | Ian Romanick | |
broken, but it will be fixed "shortly." This is pretty much the same as the patch I sent to the dri-devel list on 22-Jun-2004. | |||
2004-06-07 | Fix up some remaining include issues. Replace Xmalloc / Xfree with | Ian Romanick | |
_mesa_malloc / _mesa_free. Replace Bool with GLboolean. | |||
2004-06-02 | Removed need for sarea.h, various touch ups to get rid of type mismatches. | Jon Smirl | |
2004-06-02 | Require libGL API version 20040602, which actually exports | Ian Romanick | |
__glXGetDrawableInfo. Make sure driCreateNewDrawable sets pdraw->private to NULL for all failure paths. | |||
2004-06-02 | XF86DRIDestroyContext, XF86DRICreateDrawable, and | Ian Romanick | |
XF86DRIDestroyDrawable are all called directly from DRI drivers using the new interface. Therefore, prototypes, using available datatypes, must be available in dri_interface.h. Since the prototypes are available there, xf86dri.h is no longer needed for DRI_NEW_INTERFACE_ONLY builds. | |||
2004-06-02 | Replace drmHandle, drmContext, drmDrawable, drmMagic and related types with | Ian Romanick | |
drm_handle_t, drm_context_t, drm_drawable_t, drm_magic_t. | |||
2004-06-01 | Convert 'Display *' to '__DRInativeDisplay *'. Only portions of the | Ian Romanick | |
interface that are not *strictly* part of the old interface were changed. Replace GetDrawableInfo type (dri_util.h) with PFNGLXGETDRAWABLEINFOPROC (dri_interface.h). Wrap __driCreateScreen (in drivers that use the new interface) with '#ifndef DRI_NEW_INTERFACE_ONLY'. | |||
2004-06-01 | Fix a couple issues related to GetDrawableInfo. In the new DRI | Ian Romanick | |
interface, it must be available from libGL, and the the typedef in dri_util.h was wrong. | |||
2004-06-01 | Replace occurances of GLXDrawable and Drawable with __DRIid. | Ian Romanick | |
2004-06-01 | Fix a couple typos that prevent building with DRI_NEW_INTERFACE_ONLY. | Ian Romanick | |
2004-05-27 | Define PFNGLXGETMSCRATEOMLPROC so that DRI will build without including | Ian Romanick | |
glxext.h. | |||
2004-05-27 | Move dri_util.[ch] and glcontextmodes.[ch] from dri_client to common. | Ian Romanick | |