summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri
Commit message (Collapse)AuthorAgeFilesLines
* Implement appropriate src checks for attribs/params.Aapo Tahkola2005-02-011-62/+133
|
* Implemented bunch of ops.Aapo Tahkola2005-02-011-8/+132
|
* Vertex programs work now with some restrictions. I expect arbvptorus to workAapo Tahkola2005-02-014-139/+320
| | | | | correctly when normals are delivered. Please note that some programs only start in vb mode as there is something wrong in immediate mode vb code.
* Make WARN_ONCE messages more informative.jump_and_clickVladimir Dergachev2005-02-012-2/+3
|
* Reduce noiseness of the driver.Vladimir Dergachev2005-02-015-4/+8
|
* Get alpha in textures to work properly.Vladimir Dergachev2005-02-014-3/+16
|
* Properly set ABLEND and CBLEND registers. The older code worked, but by ↵Vladimir Dergachev2005-02-011-3/+5
| | | | accident.
* Looks like we can define FIRE_VERTICES correctly.Vladimir Dergachev2005-02-011-4/+4
|
* It helps to print actual values instead of random ones.Vladimir Dergachev2005-02-011-1/+2
|
* Bug #2428: #ifdef GLX_DIRECT_RENDERING in DRI drivers is pointless.Adam Jackson2005-01-3165-223/+3
|
* Add magic sequence to prevent ClearBuffer from locking up.Vladimir Dergachev2005-01-315-17/+61
| | | | | Change Polygon.OffsetFill from fallback to warn once. Quake demo now works, modulo texture rendering issues due to absent pixel shader pipeline.
* Use SecondaryColorPtr, not ColorPtr[1] (the latter is NULL).Vladimir Dergachev2005-01-313-3/+3
| | | | This fixes segfault in tuxracer-demo. It locks up after this though.
* My bad, the old code works fine if updated to newer Mesa tree.Vladimir Dergachev2005-01-301-3/+0
|
* struct ati_fragment_shader was not defined anywhere, define it to get ↵Vladimir Dergachev2005-01-301-0/+3
| | | | r300_vertexprog.c to compile.
* Fix for compiler warnings.Aapo Tahkola2005-01-301-1/+2
|
* * Fixed uploading of textures of certain sizes.Felix Kuehling2005-01-294-26/+168
| | | | | | | | * When glTexSubImageND is used, track the set of changed tiles in a bit vector and upload only dirty tiles later. This should improve the performance of dynamic light maps and gl movie player plugins. * Renamed debug item "lru" to "tex". Indicate which levels are uploaded completely or partially.
* Added 0x4e54 (Thinkpad r50p) as PCI_CHIP_RV350_NPhmarson2005-01-291-0/+1
|
* Beginings of program generation. This code havent been tested nor hooked up.Aapo Tahkola2005-01-293-1/+304
|
* Cleaning up.Aapo Tahkola2005-01-291-88/+93
|
* Fix wrong comment.Aapo Tahkola2005-01-281-6/+6
|
* Forgot one comment...Aapo Tahkola2005-01-281-0/+1
|
* Add basic sceleton for vertex programs + some other fixesAapo Tahkola2005-01-287-7/+340
|
* Add vector distance operator for vertex programs.Aapo Tahkola2005-01-271-0/+1
|
* (Stephane Marchesin, me) Add support for color (framebuffer) tiling to the ↵Roland Scheidegger2005-01-2615-59/+125
| | | | radeon and r200 driver
* new version check to allow to test for a range of ddx major versions, ↵Roland Scheidegger2005-01-263-6/+46
| | | | instead of just one major version
* replace magic number with macro constant RADEON_ZBLOCK16Roland Scheidegger2005-01-262-1/+2
|
* Fixes for clamp modes.Aapo Tahkola2005-01-252-3/+66
|
* border_color causes lockups with vertex buffers. Disabling for now.Aapo Tahkola2005-01-243-7/+7
|
* Remove lots of old code that dealed with "magic" texture formats.Vladimir Dergachev2005-01-241-209/+0
|
* Converted the Savage texture management to use Ian's common texmem code.Felix Kuehling2005-01-244-575/+239
|
* reapply Keiths workaround for zbs emit that got dropped duringDave Airlie2005-01-231-2/+7
| | | | state change patches....
* Remove unused variables from r300_contextNicolai Haehnle2005-01-231-5/+0
|
* Fix more warnings and compilation issues.Nicolai Haehnle2005-01-234-213/+203
|
* Synchronize r300_reg.h.Nicolai Haehnle2005-01-231-37/+83
| | | | Fix unportable whitespace before preprocessor commands.
* add sync debugging to the radeon driverDave Airlie2005-01-234-0/+22
|
* silence makedepend warnings about non-portable whitespaceAdam Jackson2005-01-233-13/+13
|
* Fixed initialization of draw destination to front buffer on singleFelix Kuehling2005-01-231-49/+19
| | | | | | | buffered visuals. Also don't change span draw/read buffers in savageDDDrawBuffer. Now glean's polygon offset test works (and PASSes with fixed point depth buffer) with single buffered visuals without winding up in an infinite loop.
* My last attempt to fix polygon offsets with the reversed viewport depthFelix Kuehling2005-01-232-3/+1
| | | | | | | | | range used by the savage driver by negating ctx->MRD broke polygon offsets with software fallbacks. This one adds a REVERSE_DEPTH parameter to t_dd_tritmp.h (defaults to 0) that allows reversing polygon offsets for hardware rendering but not for software fallbacks. For software fallbacks depth values are reversed after polygon offsets have been applied by the depth span functions.
* Properly configure routing - based on advice by Keith Whitwell.Vladimir Dergachev2005-01-224-12/+49
|
* Fixed polygon offset with reversed viewport depth range.Felix Kuehling2005-01-221-0/+3
|
* Properly input stencil info contributed by Wladimir.Vladimir Dergachev2005-01-215-62/+92
|
* silence the 'using AGP/PCI' string unless VIA_DEBUG is used.Alan Hourihane2005-01-211-5/+8
|
* Small cleanup:Felix Kuehling2005-01-216-56/+30
| | | | | | | * Remove some unused (mostly empty) functions * Added context parameter to WAIT_IDLE_EMPTY[_LOCKED] for consistency * Added debug messages to WAIT_IDLE_EMPTY[_LOCKED] * Don't flush empty command buffers
* * Added options for disabling the fast path (render stage) and vertex DMAFelix Kuehling2005-01-205-15/+42
| | | | | | * Fixed disabling of the render stage * Added debug output for per-primitive fallbacks * Bumped driver date
* Added support for ELTS to the _savage_render_stage. Requires at leastFelix Kuehling2005-01-205-31/+178
| | | | Savage DRM version 2.2.0. Otherwise the render stage is disabled.
* Enclose passed macro values in brackets to ensure correct read/write spanAlan Hourihane2005-01-207-33/+33
| | | | values.
* Bring the texcombine fixes to the trunk.Keith Whitwell2005-01-197-96/+185
|
* Always use ARGB8888 hardware texture format when mesa specifiesKeith Whitwell2005-01-191-8/+9
| | | | | MESA_FORMAT_ARGB8888. Previously attempted to use ARGB0888 under some circumstances, but glean failed and demos/texenv.c was also incorrect.
* remove some debugAlan Hourihane2005-01-181-1/+1
|
* Fix tristrips (which fixes coloredTexPerf2 & coloredLitPerf2 glean tests)Alan Hourihane2005-01-181-1/+1
|