summaryrefslogtreecommitdiff
path: root/src/mesa/x86/common_x86.c
AgeCommit message (Collapse)Author
2010-09-17x86: Silence unused variable warning on Mac OS X.Vinson Lee
Silences the following GCC warning on Mac OS X. x86/common_x86.c:58: warning: 'detection_debug' defined but not used
2010-08-25mesa: Disable the debug spam for x86 CPU detection with a compile-time flag.Eric Anholt
I don't know of any problems with CPU detection in years. Don't spam the user that was just looking to enable assertions with this stuff.
2010-08-25mesa: Move the x86 detection debug messages next to the detection.Eric Anholt
2009-03-04mesa: _mesa_get_x86_features() only needs to do its thing onceBrian Paul
2009-03-04mesa: refactor x86 codeBrian Paul
Move _mesa_init_all_x86_transform_asm() into x86.c so that common_x86.c has no dependencies on the vertex transformation code. Plus some comments and clean-ups.
2008-09-18mesa: prefix a bunch of #include lines with "main/".Brian Paul
This is another step toward removing a whole bunch of -I flags from the cc commands. Still need to address driver code...
2008-07-17mesa: added checks for OpenBSDBrad Smith
2008-07-15mesa: added test for __NetBSD__Blair Sadewitz
2007-06-05Remove dubious compile-time test for pre-2.4 Linux kernels.Michel Dänzer
LINUX_VERSION_CODE shouldn't be used by userspace code, it can be defined empty these days. If anybody still cares about 2.2 kernels, they should reinstate this as a proper runtime test.
2007-04-06Drop the funky SSE exception test on linux.George Sapountzis
Replace the check for IN_DRI_DRIVER with the appropriate kernel version check and just disable SSE on older (pre 2.4) kernels.
2006-04-10use _mesa_debug() instead of message() - fixes poor formatting of outputBrian Paul
2005-09-19additional wrapper updates, bug 4468Brian Paul
2005-07-24All elements of pre-DRI_NEW_INTERFACE_ONLY are removed. This allowsIan Romanick
1,402 lines of code to be removed from Mesa (drivers and libGL). The big winner is dri_util.c. Primary changes are: 1. Remove all "deprecated" entry-points from the various structures in dri_interface.h. 2. Rename the remaining fields to removed "version numbers." So, bindContext3 becomes bindContext. Functions with "New" in the name (e.g., CreateNewContext) were *not* changed, but that is an option. Having "New" in the name is less annoying to me than having "3" in the name. 3. Remove all compatibility code that handles cases where the driver or the loader is too old to support the latest interfaces. 4. Append the API version to the __driCreateNewScreen function name. This is currently done by hand. In the future (i.e., the next time we make an incompatible change to the interface) we'll want to come up with a better way to do this. This prevents old loaders from being able to load new (incompatible) drivers. 5. Bump the API version to 20050722. All drivers (by way of dri_util.c) require this version. 6. All drivers are *required* to expose GLX_SGIX_fbconfig and GLX_OML_swap_method (or the moral equivalents). Support for these functions in implicit in the use of the "new" interface. 7. Some cases still exist that need to be compiled differently in a loader or core Mesa versus in a driver. These are identified by the define IN_DRI_DRIVER.
2005-01-19There is no point trying to detect SSE at all, when MESA_NO_SSE is defined. ↵Daniel Borca
I am committing this because the current WIN32 SSE detection code crashes UnrealTournament2003.
2005-01-10Windows/ReactOS patch (Gregor Anich)Brian Paul
2004-12-14uint*t -> u_int*t changesAlan Hourihane
2004-10-13Eliminate the funky SSE exception test from DRI builds. It's not needIan Romanick
(see the comment in the code), and it's just annoying.
2004-04-26bring over build fixes from stable branchAlan Hourihane
2004-02-02s/getenv/_mesa_getenv/Brian Paul
2004-01-09re-enable SSE code, except for the _mesa_sse_transform_points4_identity() ↵Brian Paul
function. Use the x86 version instead
2004-01-06Add comment regarding sse disableKeith Whitwell
2004-01-06SSE segfaults in conform - disable for now.Keith Whitwell
2003-12-04build fixesAlan Hourihane
2003-11-24Merge vtx-0-2-branchKeith Whitwell
2003-10-21Updates to SSE assembler support for Open WatcomKendall Bennett
2003-10-14Updates to x86 assembler support for Open Watcom and SNAPKendall Bennett
2003-02-04print debug message when SSE is disabled by user (Klaus Neiderkrueger)Brian Paul
2003-01-21new X86 CPU detection code (Petr Sebor)Brian Paul
2002-11-13include imports.hBrian Paul
2002-07-11applied Eric Anholt's patch for Athlon SSEBrian Paul
2002-06-29Applied Matt Sealey's patch to remove/isolate all stdio.h function calls.Brian Paul
Instead of mstdio.[ch], use imports.[ch] to isolate these functions.
2002-04-09remove dead vertex assemblyKeith Whitwell
2001-06-06test for X86_FXSR_MAGIC to be sure we have the _fpstate.magic field, needed ↵Brian Paul
for SSE signal handler
2001-03-29Consolidation of asm code in 3.5Gareth Hughes
2001-03-28New type system for assembly code. Asm files should now includeGareth Hughes
matypes.h, which includes assyntax.h and is generated from the core Mesa header files.
2001-03-12Undo -D_POSIX_SOURCE change, fix the way the katmai support test isGareth Hughes
done.
2001-03-05replaced gl_test_os_katmai*() with _mesa_test_os_katmai*()Brian Paul
2001-03-03more clean-upsBrian Paul
2001-03-03lots of gl_*() to _mesa_*() namespace clean-upBrian Paul
2000-12-07Allow operating system SSE support test to be overridden with anGareth Hughes
environment variable.
2000-12-06Merge Mesa 3.4 test for operating system support for SSE.Gareth Hughes
2000-10-23Major audit of all Mesa's x86 assembly code. This round is basicallyGareth Hughes
general cleanups - more to come. Added P6 architecture timing to debug_xform routines. Still need to add test_all_vertex_functions test for the v16 asm. Dynamic reconfiguration of counter overhead for more accurate benchmarking.
2000-01-25only print info if MESA_DEBUG is setBrian Paul
1999-11-18checked in the first new PIII vertex-transformation codeAndre Werthmann
1999-09-03more bugfixesKeith Whitwell
1999-08-28features werenJosh Vanderhoof
1999-08-26various pipeline bugsKeith Whitwell
1999-08-19Initial revisionjtg