Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-10-07 | Updated xc unichrome 3D driver Imakefile to Mesa change.HEADoriginmaster | unichrome | 1 | -0/+6 | |
2004-10-02 | Fix snapshot build after r128_vb.[ch] was removed. | fxkuehl | 1 | -12/+5 | |
2004-08-22 | Fix build for new glext.h. Hopefully this gets the snapshots building again. | fxkuehl | 1 | -5/+5 | |
2004-07-10 | Patch by Mike A. Harris <mharris@redhat.com> for X.Org X11 | airlied | 2 | -24/+12 | |
Fix runtime DRI pagesize assumptions in the r128 and radeon drivers. This is particularly important on ia64 and other architectures that have a configurable pagesize. Otherwise, the X server is hard coded at build time to a particular pagesize which may not match the installed kernel. | |||||
2004-07-02 | Make sure glapi_x86.S gets built with the right threading defines. | idr | 1 | -1/+1 | |
Reported by: Dieter Nutzel | |||||
2004-07-01 | Add new source files | keithw | 1 | -0/+12 | |
2004-06-22 | The depth buffer pitch must be a multiple of 32 pixels. Thanks to Steffen | daenzer | 1 | -4/+9 | |
Hein for pointing out the problem. Bug report: http://freedesktop.org/bugzilla/show_bug.cgi?id=788 | |||||
2004-06-17 | Add client-side GLX protocol support for GL_ARB_texture_compression. The | idr | 6 | -2/+398 | |
extensions are *not* currently enabled. This is for several reaons. First, the server-side does not support texture compression, so there's no advantage to supporting it (yet) on the client-side. Second, I tried testing it with an IHV's closed-source driver (that advertises GL 1.3), but their server-side driver doesn't support the protocol. That means this code is largely untested. | |||||
2004-06-16 | Replacing via 3d client driver in xc with unichrome 3d client driver, | unichrome | 2 | -2/+2 | |
following discussion on mailing list. | |||||
2004-06-16 | Follow other dirs' leads and use MESASHADERBUILDDIR instead of (undefined) | anholt | 1 | -10/+10 | |
MESABUILDDIR | |||||
2004-06-16 | Fix copy'n'paste-o: This is the shader directory, not math. | anholt | 1 | -2/+2 | |
2004-06-11 | Warning clean-ups.trunk-20040613 | idr | 2 | -5/+5 | |
2004-06-11 | Dynamically generate client-side extension string instead of using | idr | 4 | -135/+37 | |
__glXGLClientExtensions. This makes it so that the list of extensions supported by the client only has to be maintained in one place. | |||||
2004-06-11 | Added support for building the via unichrome dri OpenGL client driver in the | unichrome | 2 | -0/+236 | |
xc tree. The driver is built as via_dri.so as opposed to unichrome_dri.so when it is built in the Mesa tree. This is because all known 2d drivers expects this name. | |||||
2004-06-11 | Add glx_query.c. Currently, the only function in that file is | idr | 6 | -82/+124 | |
__glXGetStringFromServer. Other functions will likely be added in the not too distant future. Modify surrounding code to use __glXGetStringFromServer. As an aside, this fixes a long standing, dormant bug in __glXInternalQueryServerString. If memory could not be allocated to hold the string retured by the server, _XEatData would be called with 'length'. This is wrong. 'length' measures the size of the packet in CARD32 units, but _XEatData expects the size to be in CARD8 units. | |||||
2004-06-11 | Remove some dead code. | idr | 2 | -65/+0 | |
2004-06-11 | Change the way glGetString(GL_EXTENSIONS) works so that | idr | 3 | -10/+13 | |
__glXGLClientVersion is not needed. | |||||
2004-06-11 | Enable extensions not specifically listed in the server's extension | idr | 4 | -26/+142 | |
string but are implied by the core GL version number. This code is not actually enabled, but it's all there. Comments in glGetString (in single2.c) explain it all. | |||||
2004-06-11 | Fix a subtle bug that could cause some extensions to be erroneously | idr | 1 | -0/+2 | |
enabled. | |||||
2004-06-11 | Generalize the existing GLX extension tracking mechanism so that it | idr | 3 | -54/+430 | |
can also be used for GL extensions. Modify glGetString to use the new mechanism. This allows us to, among other things, enable extensions that are implemented entirely client-side (i.e., GL_ARB_transpose_matrix). | |||||
2004-06-09 | Update the set of GLX extensions that are "magically" enabled if the server | idr | 1 | -6/+15 | |
reports GLX 1.3 support. | |||||
2004-06-09 | Report client GLX version of 1.4. | idr | 1 | -1/+1 | |
2004-06-09 | Add support for glXQueryContext (part of GLX 1.3). | idr | 2 | -28/+53 | |
2004-06-09 | Initial pass at SGIX_pbuffer support. This support is for indirect | idr | 4 | -121/+561 | |
rendering ONLY. It was tested with Mesa's pbdemo and an Nvidia driver. Both the SGIX and GLX 1.3 protocol seemed to work. | |||||
2004-06-09 | Fix build after updates to Mesa. I swear I checked this in last night. | anholt | 1 | -7/+0 | |
2004-06-07 | Fix SiS DRI visual configs with guidance from idr: | anholt | 1 | -9/+27 | |
* Fill in the size/mask values for the framebuffer by hand, because the automatic filling didn't seem to be complete. Matches other drivers. * Don't use an alpha channel in accum if framebuffer lacks alpha. * Mark visuals with accum buffer as GLX_SLOW_CONFIG. | |||||
2004-06-04 | fix GARTSize option | sroland | 1 | -3/+6 | |
2004-06-04 | Duplicate the changes made to src/mesa/drivers/dri/r128/server/r128_reg.h | idr | 1 | -66/+29 | |
in the Mesa tree so that the Rage128 DRI driver will build. | |||||
2004-06-03 | Enable use of new DRI interface in Rage128 driver. | idr | 1 | -1/+1 | |
2004-06-03 | Minor build fixes now that drm_sarea.h is used instead of sarea.h. | idr | 2 | -2/+3 | |
2004-06-02 | Add __glXGetDrawableInfo to the internal glXGetProcAddress table and | idr | 1 | -2/+5 | |
bump the API version. This is done so that DRI_NEW_INTERFACE_ONLY drivers, which *need* that function can bail early with a clear message. | |||||
2004-06-02 | Replace Bool with GLboolean. This is only needed for the functions | idr | 2 | -6/+6 | |
that are called directly by DRI drivers. | |||||
2004-06-02 | Remove the last remnants of drmClipRect. | idr | 2 | -9/+1 | |
2004-06-02 | Since XF86DRIDestroyContext, XF86DRICreateDrawable, and | idr | 2 | -17/+17 | |
XF86DRIDestroyDrawable are directly called by drivers using the new DRI interface, convert them to types available in the driver. The prototypes will also be duplicated in dri_interface.h so that drivers do not need xf86dri.h anymore. | |||||
2004-06-02 | Replace drmHandle, drmContext, drmDrawable, drmMagic and related types with | idr | 40 | -376/+277 | |
drm_handle_t, drm_context_t, drm_drawable_t, drm_magic_t. | |||||
2004-06-01 | Convert 'Display *' to '__DRInativeDisplay *'. | idr | 1 | -1/+1 | |
2004-06-01 | Replace all occurances of XF86DRIClipRect (and related typedefs) with | idr | 27 | -114/+111 | |
drm_clip_rect_t. All of the Imakefile changes are so that drm.h can be found. DRM SOURCES (i.e., shared/drm.h) MUST ALSO BE UPDATED FOR THIS TO COMPILE! | |||||
2004-05-28 | use new interface for tdfx (phase 1) | ajax | 1 | -1/+1 | |
2004-05-28 | Revert changes that were accidentally checked-in. Sorry.libdrm-1_0_4 | idr | 1 | -9/+3 | |
2004-05-28 | Move the X protocol related DRI files from lib/GL/dri to lib/GL/glx. | idr | 12 | -68/+21 | |
Soon the files in lib/GL/dri/drm will be removed (and libdrm.a will be built from the "pristine" DRM source in the drm module of DRI CVS) and the while lib/GL/dri tree will be gone. | |||||
2004-05-28 | Build fix. r200_maos_vbtmp.h was removed from the Mesa tree, so it | idr | 1 | -1/+0 | |
needs to be removed from the Imakefile.inc as well. | |||||
2004-05-28 | Build fixes. | ajax | 2 | -0/+2 | |
2004-05-27 | Use dri_util.[ch] and glcontextmodes.[ch] from the Mesa tree. | idr | 20 | -2833/+38 | |
2004-05-18 | add R200_EMIT_RB3D_BLENDCOLOR packet (sync up to radeon_drm.h) | sroland | 1 | -1/+2 | |
2004-05-06 | minor fixes | alanh | 10 | -36/+131 | |
2004-05-04 | tdfx needs _mesa_init_driver_functions | ajax | 1 | -1/+1 | |
2004-04-27 | Clean up for non X86. | idr | 1 | -47/+22 | |
2004-04-27 | updated texture sources files to match Mesa trunk | brianp | 1 | -8/+12 | |
2004-04-27 | Fix up Imakefiles to build radeon/r200 drivers with assembler | airlied | 2 | -0/+4 | |
2004-04-26 | fixe memleak in drmMapBufs (Tilman Sauerbeck) | brianp | 1 | -4/+11 | |