summaryrefslogtreecommitdiffstats
path: root/src/mesa/x86
Commit message (Collapse)AuthorAgeFilesLines
...
* more blending updates from JoseBrian Paul2002-04-021-19/+22
|
* DJGPP updatesBrian Paul2002-04-022-3/+3
|
* updates from Jose FonsecaBrian Paul2002-04-021-25/+30
|
* syntax fixes for Solaris (David Dawes)Brian Paul2002-03-076-613/+726
|
* updated VERT_BIT_* definitionsBrian Paul2002-02-151-28/+28
|
* Clean-up/renaming of the per-vertex attribute bits, specifically, theBrian Paul2002-01-221-2/+2
| | | | | | VERT_BIT_* flags are new and used in many places (esp in T&L code). Updated some comments for doxygen. Various code clean-ups.
* fix bug 498555 - test for __GNUC__Brian Paul2002-01-041-2/+2
|
* Replace old matrix stacks with new code based on struct matrix_stack.Brian Paul2001-12-181-2/+2
| | | | | | Moved vertex program hash table into shared context state. Implemented reference counting for vertex programs. Replaced tnl "ProjectedClip" with "Ndc" (normalized device coordinates).
* updated vertex buffer identifiersBrian Paul2001-12-161-12/+13
|
* vertex program check-inBrian Paul2001-12-141-0/+384
|
* dispatch changes to minimize hassle with XFree86 libGLBrian Paul2001-12-041-296/+290
|
* 3dnow normalize_normals broken, disableKeith Whitwell2001-11-191-2/+4
|
* added test implementation of GL_ARB_window_posBrian Paul2001-11-181-0/+96
|
* API dispath updatesBrian Paul2001-11-181-331/+347
|
* applied Andrew Lewycky's patchesBrian Paul2001-10-223-179/+104
|
* added new entrypoints for 1.3Brian Paul2001-10-171-0/+278
|
* Remove _BaseAlpha, fix reflect lighting bug.Keith Whitwell2001-07-281-2/+1
|
* test for X86_FXSR_MAGIC to be sure we have the _fpstate.magic field, needed ↵Brian Paul2001-06-061-5/+5
| | | | for SSE signal handler
* replaced #ifdef 0 with #if 0Brian Paul2001-05-311-2/+2
|
* Initial commit of cliptest work. More to come shortly.Gareth Hughes2001-05-213-36/+29
| | | | | | | | - Add debug, benchmark code. - Change linux/x86 FAST_MATH code to GCC/x86, and clear FP exceptions before exiting the fast math block. - Remove divide-by-zero test in x86 cliptest, and set clipped vertices to [0,0,0,1] instead of leaving them uninitialized.
* Fix long-standing FP exception bug in _mesa_x86_cliptest_points4().Gareth Hughes2001-05-132-5/+17
|
* Remove all traces of CULL_MASK_ACTIVE.Gareth Hughes2001-03-306-218/+135
|
* Consolidation of asm code in 3.5Gareth Hughes2001-03-2920-139/+6916
|
* Make generation of matypes.h more transparent.Gareth Hughes2001-03-291-2/+1
|
* New type system for assembly code. Asm files should now includeGareth Hughes2001-03-2815-178/+465
| | | | | matypes.h, which includes assyntax.h and is generated from the core Mesa header files.
* Undo -D_POSIX_SOURCE change, fix the way the katmai support test isGareth Hughes2001-03-121-2/+2
| | | | done.
* replaced gl_test_os_katmai*() with _mesa_test_os_katmai*()Brian Paul2001-03-051-5/+5
|
* more clean-upsBrian Paul2001-03-037-43/+39
|
* more namespace clean-upsBrian Paul2001-03-032-68/+68
|
* lots of gl_*() to _mesa_*() namespace clean-upBrian Paul2001-03-036-39/+39
|
* minor changes from XFree86 (dawes)Brian Paul2001-02-091-2/+8
|
* Some more work on interal debugging, timing routines for things thatGareth Hughes2001-02-032-10/+10
| | | | | will have implementations in assembly code. To come: texture image conversions, more of internal T&L pipeline and so on.
* Fix crash in book/stencil.Keith Whitwell2001-01-132-2/+170
| | | | | Allow drivers to perform the perspective divide themselves. Assembly to do cliptesting without perspective divide for size-4 vectors.
* Fixes for compiling assembly (disable unused 'masked' versions)Keith Whitwell2000-12-272-9/+9
| | | | | | Fixes for compiling without debug. Fix line clipping Fix unfilled polygon clipping (should be correct now).
* Major rework of tnl moduleKeith Whitwell2000-12-262-1242/+2
| | | | | | | New array_cache module Support 8 texture units in core mesa (now support 8 everywhere) Rework core mesa statechange operations to avoid flushing on many noop statechanges.
* Allow operating system SSE support test to be overridden with anGareth Hughes2000-12-071-2/+2
| | | | environment variable.
* Merge Mesa 3.4 test for operating system support for SSE.Gareth Hughes2000-12-062-8/+233
|
* Support for swappable t&l modules, including an example one in the FXKeith Whitwell2000-11-241-2/+2
| | | | driver (enable with FX_ALLOW_VTXFMT=t).
* Modified Files:Jouk Jansen2000-11-222-4/+4
| | | | | | | | | | | | | | | | | | Mesa/src/Allegro/amesa.c Mesa/src/DOS/dosmesa.c Mesa/src/FX/fxdd.c Mesa/src/FX/fxdrv.h Mesa/src/FX/fxfastpath.c Mesa/src/GGI/include/ggi/mesa/ggimesa.h Mesa/src/OSmesa/osmesa.c Mesa/src/SVGA/svgamesa.c Mesa/src/Trace/tr_control.c Mesa/src/Windows/wgl.c Mesa/src/X/xmesaP.h Mesa/src/X86/3dnow.c Mesa/src/X86/katmai.c Mesa/src/X86/x86.c Removed Files: Mesa/src/mms_depend Oops,... all files containing Caps in directory name or file name were missing in my types->mtypes commit. ----------------------------------------------------------------------
* - Fix tnl/t_context.h inclusion.Gareth Hughes2000-11-192-8/+10
| | | | - Some SSE asm updates, more to come.
* * Auto* build fixesJon Taylor2000-11-182-2/+5
| | | | * Added missing includes to math/*
* Move the transform and lighting code to two new directoriesKeith Whitwell2000-11-164-11/+14
| | | | | | | | | | | | | | | math: Provides basic matrix and vector functionality that might be useful to multiple software t&l implementations, and is used by core mesa to manage the Model, Project, etc matrices. tnl: The real transform & lighting code from core mesa, including everything from glVertex3f through vertex buffer handling, transformation, clipping, lighting and handoff to a driver for rasterization. The interfaces of these can be further tightened up, but the basic splitting up of state and code move is done.
* - Changes for new software rasterizer modulesKeith Whitwell2000-11-051-38/+1
| | | | | | | | | - Remove support for choosing software fallbacks from core code - Remove partial fallback code from vbrender.c -- drivers are now expected to be able to find a triangle/quad function for every state, even if they have to use _swsetup_Triangle or _swsetup_Quad. - Marked derived variables in the GLcontext struct with a leading underscore '_'.
* Enabled GL_EXT_secondary_color. Fixed a bunch of typos in the dlist.cBrian Paul2000-10-271-0/+136
| | | | | | | | and state.c file for plugging those functions into the dispatch table. Don't use Mesa 3.5 for DRI until SGI approves the new dispatch offsets. Commented-out references to ctx->FogMode and VB->Specular in FX driver. Minor clean-up in extensions.c Removed unused prototype in fog.h
* Major audit of all Mesa's x86 assembly code. This round is basicallyGareth Hughes2000-10-2314-293/+947
| | | | | | | | 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.
* Added SSE streaming store instructions, external symbol directives.Gareth Hughes2000-09-181-1/+15
|
* Added SSE prefetching instructions. General cleanups.Gareth Hughes2000-09-181-1342/+1349
|
* General cleanups. Disable gl_katmai_project_vertices andGareth Hughes2000-09-171-103/+104
| | | | gl_katmai_project_clipped_vertices for now as they are broken.
* moved DECLARE_XFORM_GROUP macros outside of gl_init_3dnow_asm_transforms() ↵Brian Paul2000-09-151-17/+16
| | | | to silence compiler warnings
* test for __bsdi__ for XFree86Brian Paul2000-09-061-1/+1
|