summaryrefslogtreecommitdiff
path: root/xc
AgeCommit message (Collapse)AuthorFilesLines
2004-10-07Updated xc unichrome 3D driver Imakefile to Mesa change.HEADoriginmasterunichrome1-0/+6
2004-10-02Fix snapshot build after r128_vb.[ch] was removed.fxkuehl1-12/+5
2004-08-22Fix build for new glext.h. Hopefully this gets the snapshots building again.fxkuehl1-5/+5
2004-07-10Patch by Mike A. Harris <mharris@redhat.com> for X.Org X11airlied2-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-02Make sure glapi_x86.S gets built with the right threading defines.idr1-1/+1
Reported by: Dieter Nutzel
2004-07-01Add new source fileskeithw1-0/+12
2004-06-22The depth buffer pitch must be a multiple of 32 pixels. Thanks to Steffendaenzer1-4/+9
Hein for pointing out the problem. Bug report: http://freedesktop.org/bugzilla/show_bug.cgi?id=788
2004-06-17Add client-side GLX protocol support for GL_ARB_texture_compression. Theidr6-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-16Replacing via 3d client driver in xc with unichrome 3d client driver,unichrome2-2/+2
following discussion on mailing list.
2004-06-16Follow other dirs' leads and use MESASHADERBUILDDIR instead of (undefined)anholt1-10/+10
MESABUILDDIR
2004-06-16Fix copy'n'paste-o: This is the shader directory, not math.anholt1-2/+2
2004-06-11Warning clean-ups.trunk-20040613idr2-5/+5
2004-06-11Dynamically generate client-side extension string instead of usingidr4-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-11Added support for building the via unichrome dri OpenGL client driver in theunichrome2-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-11Add glx_query.c. Currently, the only function in that file isidr6-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-11Remove some dead code.idr2-65/+0
2004-06-11Change the way glGetString(GL_EXTENSIONS) works so thatidr3-10/+13
__glXGLClientVersion is not needed.
2004-06-11Enable extensions not specifically listed in the server's extensionidr4-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-11Fix a subtle bug that could cause some extensions to be erroneouslyidr1-0/+2
enabled.
2004-06-11Generalize the existing GLX extension tracking mechanism so that itidr3-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-09Update the set of GLX extensions that are "magically" enabled if the serveridr1-6/+15
reports GLX 1.3 support.
2004-06-09Report client GLX version of 1.4.idr1-1/+1
2004-06-09Add support for glXQueryContext (part of GLX 1.3).idr2-28/+53
2004-06-09Initial pass at SGIX_pbuffer support. This support is for indirectidr4-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-09Fix build after updates to Mesa. I swear I checked this in last night.anholt1-7/+0
2004-06-07Fix SiS DRI visual configs with guidance from idr:anholt1-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-04fix GARTSize optionsroland1-3/+6
2004-06-04Duplicate the changes made to src/mesa/drivers/dri/r128/server/r128_reg.hidr1-66/+29
in the Mesa tree so that the Rage128 DRI driver will build.
2004-06-03Enable use of new DRI interface in Rage128 driver.idr1-1/+1
2004-06-03Minor build fixes now that drm_sarea.h is used instead of sarea.h.idr2-2/+3
2004-06-02Add __glXGetDrawableInfo to the internal glXGetProcAddress table andidr1-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-02Replace Bool with GLboolean. This is only needed for the functionsidr2-6/+6
that are called directly by DRI drivers.
2004-06-02Remove the last remnants of drmClipRect.idr2-9/+1
2004-06-02Since XF86DRIDestroyContext, XF86DRICreateDrawable, andidr2-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-02Replace drmHandle, drmContext, drmDrawable, drmMagic and related types withidr40-376/+277
drm_handle_t, drm_context_t, drm_drawable_t, drm_magic_t.
2004-06-01Convert 'Display *' to '__DRInativeDisplay *'.idr1-1/+1
2004-06-01Replace all occurances of XF86DRIClipRect (and related typedefs) withidr27-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-28use new interface for tdfx (phase 1)ajax1-1/+1
2004-05-28Revert changes that were accidentally checked-in. Sorry.libdrm-1_0_4idr1-9/+3
2004-05-28Move the X protocol related DRI files from lib/GL/dri to lib/GL/glx.idr12-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-28Build fix. r200_maos_vbtmp.h was removed from the Mesa tree, so itidr1-1/+0
needs to be removed from the Imakefile.inc as well.
2004-05-28Build fixes.ajax2-0/+2
2004-05-27Use dri_util.[ch] and glcontextmodes.[ch] from the Mesa tree.idr20-2833/+38
2004-05-18add R200_EMIT_RB3D_BLENDCOLOR packet (sync up to radeon_drm.h)sroland1-1/+2
2004-05-06minor fixesalanh10-36/+131
2004-05-04tdfx needs _mesa_init_driver_functionsajax1-1/+1
2004-04-27Clean up for non X86.idr1-47/+22
2004-04-27updated texture sources files to match Mesa trunkbrianp1-8/+12
2004-04-27Fix up Imakefiles to build radeon/r200 drivers with assemblerairlied2-0/+4
2004-04-26fixe memleak in drmMapBufs (Tilman Sauerbeck)brianp1-4/+11