summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/unichrome
AgeCommit message (Collapse)Author
2005-07-01remove common macros used in the span functions of most drivers from the ↵Roland Scheidegger
individual drivers and put them in common code. It is still possible for a driver to define its own macros if it has special needs. This affects CLIPPIXEL, CLIPSPAN, HW_CLIPLOOP, HW_ENDCLIPLOOP, and for drivers using the spantmp2 template also GET_SRC_PTR and GET_DST_PTR.
2005-06-30Replace add_newer_entrypoints (src/mesa/main/context.c) withIan Romanick
device-specific code. A new Python script (src/mesa/glapi/extension_helper.py) generates a list of all entry-points for all known extensions. Each driver the selects only the extensions that it needs and enables the via either driInitExtensions or driInitSingleExtension. This code has been compile-tested on a drivers, but has only been run-tested on mga and i915 (on i830 hardware). These changes were discussed at length on the mesa3d-dev mailing list. http://marc.theaimsgroup.com/?t=111947074700001&r=1&w=2
2005-06-27Get rid of the MESA_PBUFFER_ALLOC/FREE() macros.Brian Paul
If that stuff is still needed, lots of other updates are needed anyway. Also, some misc MALLOC/FREE -> _mesa_malloc/free() changes.
2005-05-26Bump driver date.Keith Whitwell
2005-05-25add special case for flat shaded + separate specular trianglesKeith Whitwell
2005-05-25Disable polygon stipple - it seems to break if certain specific stippleKeith Whitwell
patterns are used, including the one generated by conform.
2005-05-25Fix various issues with cliprects and MakeCurrentKeith Whitwell
2005-05-24Only use x86 / SSE assembly when USE_X86_ASM / USE_SSE_ASM are defined.Ian Romanick
This makes the driver build on x86-64 again.
2005-05-23Initialize hw stencil renderbuffer.Keith Whitwell
2005-05-23Disable recent sse change pending more testing.Keith Whitwell
2005-05-23Use SSE for vertex emit -- another good speedup.Keith Whitwell
2005-05-23Import Thomas Helstrom's SSE memcpy code from the via X.org driver.Keith Whitwell
Add a TextureMemCpy callback, called from texstore.c when copying texture data via the memcpy_texture() path. Enable this code in the via driver - 100% speedup in texdown.c results.
2005-05-06fix cpp / bytesPerPixel problem (bug 1196554)Brian Paul
2005-05-05Refactor COMMON_SOURCES up to Makefile.templateAdam Jackson
2005-05-04Add drirenderbuffer.c to COMMON_SOURCESAdam Jackson
2005-05-04Major check-in of changes for GL_EXT_framebuffer_object extension.Brian Paul
Main driver impacts: - new code for creating the Mesa GLframebuffer - new span/pixel read/write code Some drivers not yet updated/tested.
2005-04-22First pass at updating these drivers with pipeline_stage struct changes.Keith Whitwell
2005-04-14Disable CLOD (Lod constant) state emit. The values emitted wereKeith Whitwell
possibly negative, hence clobbering the leading register-id byte. Fixed the calculation of the values to prevent negative numbers being emitted, but the code still doesn't implement texture LOD bias correctly, so leave it disabled overall.
2005-04-05Don't call PrimitiveNotify with an invalid primitive. Fix ipersKeith Whitwell
wireframe mode.
2005-03-23remove file after mergeKeith Whitwell
2005-03-22rename mesaVis to try and improve clarityKeith Whitwell
2005-03-22merge unichrome changes from branchKeith Whitwell
2005-02-11Turn _via_fastrender_stage back on.Keith Whitwell
2005-01-21silence the 'using AGP/PCI' string unless VIA_DEBUG is used.Alan Hourihane
2005-01-20Enclose passed macro values in brackets to ensure correct read/write spanAlan Hourihane
values.
2005-01-19Bring the texcombine fixes to the trunk.Keith Whitwell
2005-01-19Always use ARGB8888 hardware texture format when mesa specifiesKeith Whitwell
MESA_FORMAT_ARGB8888. Previously attempted to use ARGB0888 under some circumstances, but glean failed and demos/texenv.c was also incorrect.
2005-01-18remove some debugAlan Hourihane
2005-01-18Fix tristrips (which fixes coloredTexPerf2 & coloredLitPerf2 glean tests)Alan Hourihane
2005-01-14Enable line stippling.Alan Hourihane
2005-01-14Fix previously un-noticed issue with flat-shaded points.Keith Whitwell
2005-01-14silence a warningAlan Hourihane
2005-01-14Get PolygonStipple working.. (or seemingly too). It seems to do the rightAlan Hourihane
things now given the demos I've used and passes glean's paths test.
2005-01-1416bpp doesn't support masked clears, so fallback when they're enabled.Alan Hourihane
2005-01-14Populate WriteMonoDepthSpan in 24/8 modes.Keith Whitwell
2005-01-13remove some dead texture codeAlan Hourihane
2005-01-13Rename via_fastrender_* to avoid confusion with similar functions inKeith Whitwell
via_render.c.
2005-01-13Simplify viaChooseVertexState slightly.Keith Whitwell
2005-01-13Remove misleading comment.Keith Whitwell
2005-01-13TypoKeith Whitwell
2005-01-13Emit constant colors for texunit 1 blending.Keith Whitwell
Change comments and some code to match naming used in the docs.
2005-01-13cut out dead texture state codeKeith Whitwell
2005-01-13revert some makecurrent codeAlan Hourihane
2005-01-13Fix glean scissor testAlan Hourihane
2005-01-13As we fallback for polygon stipple on the CLE266 for now, ensure weAlan Hourihane
don't turn on the polygon stipple hardware bit.
2005-01-12Use the faster span read/write template for 16bppAlan Hourihane
2005-01-12Don't special-case 16bpp for colormask register - not needed.Keith Whitwell
2005-01-12Remove bogus write to freed memory (valgrind).Keith Whitwell
2005-01-12Check for deletion of currently bound contextAlan Hourihane
Other minor cleanups
2005-01-12Fixes lockups initializing AGP DMA.Alan Hourihane