aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Make ffb driver build on x86-64. The fix is two fold. First, use theIan Romanick2005-08-111-3/+7
| | | | | | | proper DRM_CAS_RESULT to declare the variable used to store the result of DRM_CAS. Second, only use the "real" versions of LOCK_HARDWARE and UNLOCK_HARDWARE on SPARC. That's the only platform where the hardware can really exist.
* Remove _glapi_check_multithread from the interface exported by the loader toIan Romanick2005-08-109-1113/+887
| | | | | | | | | | | | | | | | | the driver. The loader now takes care of this for the driver. Remove _glapi_DispatchTSD and give _glapi_Dispatch its semantic (i.e., having a NULL value means that the application is multithreaded and _glapi_get_dispatch must be called). Gut all of the dispatch override code. This removes _glapi_RealDispatch, _glapi_tls_RealDispatch, _glapi_begin_dispatch_override, _glapi_end_dispatch_override, and _glapi_get_override_dispatch. Remove _glapi_get_proc_address, _glapi_get_proc_name, _glapi_get_version, and _glapi_check_table from the loader / driver interface. Reviewed by: Brian Paul
* Mesa uses the glVertexAttrib*NV functions to implement fixed-functionIan Romanick2005-08-101-2/+5
| | | | | | | | | | attributes in display lists. If a driver doesn't add entry points for GL_NV_vertex_program, it will explode. This patch adds GL_NV_vertex_program to the list of default extensions whose entry points are added by driInitExtensions. Thanks go to Roland Scheidegger for tracking the problem down and suggesting the fix.
* the PIXEL_MAP_I_TO_I table should be GLfloat, not GLintBrian Paul2005-08-102-13/+14
|
* fix static assertion problem for gcc (bug 4022)Brian Paul2005-08-101-1/+4
|
* disable the pointer size assertions (bug 4021)Brian Paul2005-08-101-2/+5
|
* fix indentationBrian Paul2005-08-101-14/+14
|
* Check for prim/vertex store non-null before messing with refcounts.Keith Whitwell2005-08-101-2/+4
|
* Add rules and target to build src/mesa/x86-64/glapi_x86-64.S.Ian Romanick2005-08-091-0/+4
|
* Decrement the context's refcounts on part-used storage structs onKeith Whitwell2005-08-091-1/+11
| | | | context destroy. Fixes memory leak.
* actually free the renderbuffer in xmesa_delete_renderbuffer(), fixes a ↵Brian Paul2005-08-091-1/+5
| | | | memory leak
* _mesa_free_framebuffer_data() call frees the renderbuffers, no need to call ↵Brian Paul2005-08-091-4/+0
| | | | the Delete methods after
* free context structure (bug 1252316) and s/free/_mesa_free/Brian Paul2005-08-091-6/+7
|
* s/Disaptch/Dispatch/ (bug 3918)Brian Paul2005-08-082-2/+2
|
* Since glcontextmodes.[ch] are no longer used in the DRI drivers, removed theIan Romanick2005-08-082-6/+6
| | | | IN_DRI_DRIVER cruft. This was suggested by George Fufutos.
* fix up color tiling in miniglx radeon server codeDave Airlie2005-08-081-15/+34
|
* fix miniglx setting virtual size of 832 for 800x600Dave Airlie2005-08-081-2/+2
|
* Remove platform specific bits from radeon_egl.cJon Smirl2005-08-081-2/+0
|
* Dike out the linux-specific EGL bits unless it's a linux build.Eric Anholt2005-08-081-1/+5
|
* Add missing egldri.h header fileJon Smirl2005-08-071-0/+113
|
* Enable EGL support in 'linux-dri' configJon Smirl2005-08-072-6/+8
|
* Follow suggestion by Aapo Tahkola to fix giant memory leak from forgetting ↵Vladimir Dergachev2005-08-062-0/+2
| | | | to free the key when entry was already found (presumably a common case).
* Fix card_extensions by following corresponding r200 code.Vladimir Dergachev2005-08-061-50/+12
| | | | | Fix suggested by Ian Romanick. R300 driver now works without segfault.
* Fixes bugzilla #1730.Ian Romanick2005-08-051-1/+2
| | | | | | Make sure that all the values used in the clean-up code are initialized at some point. It is still unclear to me as to why GCC does not complain. I suspect the problem may be due to the depth of if-statement nesting.
* Fixes bugzillla #812.Ian Romanick2005-08-051-8/+0
| | | | | | | The weak version of _glapi_DispatchTSD was removed from dri_util.c. As stated in the bug report, this was only needed to support versions of libGL that did not have this symbol. Versions of libGL without this symbol are no longer supported at all, so it is totally irrelevant.
* remove the drmAddressAlan Hourihane2005-08-051-1/+0
|
* In order to create the set of available extensions, we have to know ifIan Romanick2005-08-051-1/+1
| | | | | | | | | | | | direct-rendering is possible on a given screen. It is not possible to determine this by just looking at driDisplay.private in the display structure. However, it is possible to determine this by looking at driScreen.private in the screen structure. This field is only non-NULL if a DRI driver has been successfully loaded and bootstrapped. Once we get to that point, we know that direct-rendering is at least theoretically possible. This fixes bugzilla #2875.
* Fix recent problems with display lists and other parts of the code.Ian Romanick2005-08-058-12/+519
| | | | | | | | | | | | | | | | | | | | | | | | | | | | CALL_by_offset, SET_by_offset, and GET_by_offset all had various problems. The core issue is that parts of the device-independent code in Mesa assumes that all functions have slots in the dispatch table. This is especially true in the display list code. It will merrilly try to set dispatch pointers for glVertexAttrib1fARB even if GL_ARB_vertex_program is not supported. When the GET/SET/CALL macros are invoked, they would read a 0 from the remap table. The problem is that 0 is the dispatch offset for glNewList! One change is that the remap table is now initialized to be full of -1 values. In addtion, all of the *_by_offset marcos misbehave in an obvious way if the specified offset is -1. SET_by_offset will do nothing, GET_by_offset will return NULL, and CALL_by_offset, since it uses GET_by_offset, will segfault. I also had to add GL_EXT_blend_func_separate to the list of default extensions in all_mesa_extensions (src/mesa/drivers/dri/common/utils.c). Even though many drivers do not export this extension, glBlendFunc is internally implemented by calling glBlendFuncSeparate. Without this addition, glBlendFunc stopped working on drivers (such as mga) that do not export GL_EXT_blend_func_separate. There are still a few assertions / crashes in GL_ARB_vertex_program tests, but I don't think that these are related to any of my changes.
* More EGL prep. No impact on anything outside of EGLJon Smirl2005-08-057-50/+45
|
* New files for radeon egl driver.Jon Smirl2005-08-043-0/+2045
| | | | Still a work in progress.
* Convert all instances of XTHREADS to USE_XTHREADS. This fixes one ofIan Romanick2005-08-038-14/+14
| | | | | serveral things that are broken when building on a system with X.org 7.0rc0 installed.
* Add color tiling support to miniglx for radeonDave Airlie2005-08-036-2/+91
| | | | (Stephane Marchesin + Dave Airlie)
* Fix build problems related to finding Xthreads.h.Ian Romanick2005-08-012-6/+1
|
* Remove unused structures and data fields. These had been left in becauseIan Romanick2005-07-291-49/+1
| | | | | | DRI drivers using the "old" interface relied on certain fields being at certain offsets. Removing the structures would break that. Now that the old interface is no longer supported, the dead data can finally die.
* Add a new config called linux-indirect. This build the GLX libGL just likeIan Romanick2005-07-291-2/+1
| | | | | | linux-dri, but it disables support for direct-rendering in it. This config mainly exists so that I can verify that changes to libGL haven't broken builds on non-DRI platforms.
* Leave the AGP_BASE code in. It is pointless to bump the interfaceJon Smirl2005-07-291-0/+4
| | | | for X on a miniglx fix. It can be removed later.
* Remove OUTREG(RADEON_AGP_BASE, info->ringHandle); from DRI driverJon Smirl2005-07-291-4/+0
| | | | Code is already in DRM driver to do this.
* Commit Ian's fixes from Bug 3877Jon Smirl2005-07-295-62/+149
| | | | | I have tested these on miniglx and they seem to be working. I'm sure Dave will give them a better test.
* Fix a == vs !- typo for glx_enable_extensionJon Smirl2005-07-298-9/+9
|
* Use the routines supplied in the __DRIinterfaceMethods structure to create aIan Romanick2005-07-283-6/+3
| | | | | destroy __GLcontextModes structures. This eliminates the need for DRI drivers to ever link with glcontextmodes.c.
* glxEnableExtension is a platform-specific function exported by the loader.Ian Romanick2005-07-289-85/+66
| | | | Therefore, drivers should not require it to run.
* Major rip-up of internal function insertion interface. The oldmesa_6_3_1Ian Romanick2005-07-2841-991/+2990
| | | | | | | | | | | | | | | | | | | | | | _glapi_add_entrypoint has been replaced by a new routine called _glapi_add_dispatch. This new routine dynamically assignes dispatch offsets to functions added. This allows IHVs to add support for extension functions that do not have assigned dispatch offsets. It also means that a driver has no idea what offset will be assigned to a function. The vast majority of the changes in this commit account for that. An additional table, driDispatchRemapTable, is added. Functions not in the Linux OpenGL ABI (i.e., anything not in GL 1.2 + ARB_multitexture) has a fixed offset in this new table. The entry in this table specifies the offset in of the function in the real dispatch table. The internal interface was also bumped from version 20050725 to 20050727. This has been tested with various programs in progs/demos on: radeon (Radeon Mobility M6) r128 (Rage 128 Pro) mga (G400)
* Fix SPARC assembly for 64-bitIan Romanick2005-07-289-19314/+1910
| | | | | | | | | | | | | | - The test for whether or not we're building for 64-bit is '#ifdef __arch64__'. This appears to be correct on both Linux and Solaris. - The test for Solaris is now '#if defined(SVR4) || defined(__SVR4) || defined(__svr4__)'. GCC 3.4.0 has all three defined on Solaris 9. - Enables assembly language clip routines. - Fixes to make GLSL code build on Solaris. - Update gl_SPARC_asm.py.
* test for the proper drm version, at least 1.17 is requiredRoland Scheidegger2005-07-271-1/+1
|
* typoAlan Hourihane2005-07-261-1/+1
|
* support GLX_DIRECT_COLOR in 1.4.0Alan Hourihane2005-07-261-3/+1
|
* Remove the last remnants of GLX_BUILT_IN_XMESA. This allows the removal ofIan Romanick2005-07-268-256/+121
| | | | the evil, ugly GLX_PREFIX macro as well.
* Bump the required ddx to 1.4.0 as drmAddress has been removed so that 32/64bitAlan Hourihane2005-07-261-4/+12
| | | | combinations work.
* No, really, get rid of all the remaining references to DRI_USE_NEW_INTERFACE.Ian Romanick2005-07-261-0/+4
| | | | | A couple other remnants of the old interfaces hit the dust too. Thanks Jon. :)
* Quote $(CC) and $(CXX) so that 'CC=ccache gcc' and 'CXX=ccache g++' willIan Romanick2005-07-269-12/+12
| | | | work again.