Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-03-01 | fixed mistake in alpha buffer clear test | Brian Paul | |
2001-03-01 | Uncomment some defaults. | Keith Whitwell | |
2001-03-01 | Bugfixes for vertex format, templates | Keith Whitwell | |
2001-03-01 | added s/w alpha buffer clearing | Brian Paul | |
2001-02-28 | Templates are in working order. | Keith Whitwell | |
2001-02-27 | minor extension tweaks | Brian Paul | |
2001-02-26 | Disable most extensions by default. Drivers should enable them as needed. | Brian Paul | |
Renamed gl_*() functions as _mesa_*(). | |||
2001-02-24 | Template work | Keith Whitwell | |
2001-02-22 | removed some bogus code | Brian Paul | |
2001-02-19 | plug in fallback teximage DD functions | Brian Paul | |
2001-02-19 | Updated Driver.CopyTexImage[12]D and Driver.CopyTexSubImage[123]D functions | Brian Paul | |
so they work like the other teximage functions. Added fallback routines to texstore.c for drivers to use. | |||
2001-02-17 | Changed FetchTexel() function pointer arguments. | Brian Paul | |
Implemented glGetTexImage(format=GL_COLOR_INDEX). Changed _mesa_unpack_depth_span() args. Minor changes/clean-ups in mtypes.h. Histogram counter component sizes were wrong. | |||
2001-02-17 | added MESA_GLX_FORCE_CI env var (useful for conformance testing) | Brian Paul | |
2001-02-16 | Allow swrast to cope (fairly) cleanly with GL_SEPERATE_SPECULAR when | Keith Whitwell | |
texturing is not enabled, and without requiring the two colors be added externally. As a part of this, collapsed the decomposition of quads into triangles inside swrast to be hardwired into _swrast_Quad; removed s_quads.[ch]. Removed checks on texture state from t_vb_light.c, which was previously required by swrast. Moved the t_dd_ templates to a new directory. | |||
2001-02-13 | fixed a few CI mode span bugs and a dither bug | Brian Paul | |
2001-02-12 | added ctx->Driver.ResetLineStipple, misc clean-up | Brian Paul | |
2001-02-08 | fixed bytesPerValue bug in OSMesaGetDepthBuffer() | Brian Paul | |
2001-02-07 | new texture image routines work now | Brian Paul | |
2001-02-06 | updated texture image handling - STILL UNTESTED | Brian Paul | |
2001-02-06 | Overhaul of texture image handling. | Brian Paul | |
1. gl_texture_image struct's Data pointer points to images in driver's format. 2. Added FetchTexel() function pointer to struct gl_texture_image. 3. Changed Driver Tex[Sub]Image functions, return void now. 4. Texture storage/fetch code in new texstore.c file. 5. Removed texture.[ch] - functions moved to state.c Note: FX driver updates not finished yet. | |||
2001-02-06 | Use a lookup table to compute exponents in tnl fogging code. Slightly | Keith Whitwell | |
clean up the shine table lookup macro. | |||
2001-02-06 | misc updates to match latest device driver changes | Brian Paul | |
2001-01-29 | fixed inverted Y coord for dithering in write_span_DITHER_5R6G5B_ximage() | Brian Paul | |
2001-01-29 | Update implementations of Driver.Clear(). | Keith Whitwell | |
2001-01-29 | Removed knowledge of swrast Clear/Bitmap/Accum/Draw/Read/CopyPixels | Keith Whitwell | |
functions from core mesa -- if drivers need these fallbacks they must now call them themselves. Introduced hooks for clip-vertex-interpolation and the rendering of clipped lines and polygons. Allows drivers to interpolate their hardware-format vertices directly. Used in dri drivers to replace fastpath code. Slight optimizations to pipeline build/run routines. | |||
2001-01-24 | removed the unused/broken GL_PGI_misc_hints extension | Brian Paul | |
2001-01-24 | Lots of GLchan datatype changes. | Brian Paul | |
Added GLvector4us datatype in math/m_vector.[ch] Added _math_trans_4us() in math/m_translate.[ch] Choose GLvector4ub, GLvector4us, GLvector4f at compile time based on CHAN_BITS. Made Driver.ClearColor() and Driver.ClearIndex() optional driver functions. Changed args to Driver.ClearColor(), updated drivers. Reordered files in Makefile.X11 | |||
2001-01-23 | Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h. | Brian Paul | |
Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups. | |||
2001-01-16 | updated ctx->Driver functions for s/w setup | Brian Paul | |
2001-01-16 | Fix several conformance problems. Hack solution to line stipple problem. | Keith Whitwell | |
2001-01-12 | initialize Driver.RenderPrimitive to _swsetup_RenderPrimNoop | Brian Paul | |
2001-01-08 | Fixed 'IRound' to 'IROUND' in mmath.h | Keith Whitwell | |
Fixed fallback path for drawarrays/_tnl_hard_begin. Removed disabled debug code. | |||
2001-01-08 | revert XMesaCreateContext changes | Keith Whitwell | |
2001-01-08 | Bring the FX driver into line with core mesa changes. | Keith Whitwell | |
2001-01-08 | Modify X11 driver and fake glx to store a GLcontext | Keith Whitwell | |
(ie a 'struct __GLcontextRec *') instead of an 'XMesaContext'. This is to fix conflicts in XFree86 where both the indirect XMesaContext and the GLcontext were calling themselves __GLcontextRec's. | |||
2001-01-05 | Remove 'pv' parameter from Line/Tri/Point funcs. The provoking vertex | Keith Whitwell | |
is always the last vertex parameter. Modify clipping to preserve pv colors. Modify swrast and X11 driver to expect the pv in the last vertex (was looking in the first vertex previously). Remove all handling of flatshading from swrast_setup. Allow drivers to override the unclipped render tabs in tnl_render_stage directly. (Like in 3.4). Removed fxsimplerender stage. Modified t_vb_rendertmp.h to remove the need for 'parity' arguments in RENDER_TRI macros. | |||
2001-01-03 | More color macro clean-ups. | Brian Paul | |
FLOAT_TO_CHAN() macro removed. | |||
2001-01-03 | Added missing #include "mmath.h" | Jon Taylor | |
2001-01-02 | Removed fixed.h (GLfixed now in mtypes.h, fixed-pt macros in mmath.h) | Brian Paul | |
Clean-up of color conversion macros. New mmath.h macros (IROUND, IFLOOR, ICEIL, FRAC) used in various places. | |||
2000-12-28 | Add render stage for unclipped vb's to fx driver. | Keith Whitwell | |
Bump MAX_TEXTURE_UNITS to 8 Fix mem. leak in destroy_lists Fix crash in q3 (cva generally) | |||
2000-12-28 | Fixed GGIMesa build problems. | Jon Taylor | |
Swrast triangle drawing fixes. | |||
2000-12-26 | Major rework of tnl module | Keith Whitwell | |
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. | |||
2000-12-15 | added more GLX extension function stubs | Brian Paul | |
2000-12-14 | added some more GLX extension entrypoints (fix GLUT link problems when using ↵ | Brian Paul | |
glxext.h) | |||
2000-12-13 | use inverted Y coordinate for choosing dither value (conformance fixes) | Brian Paul | |
2000-12-13 | tweaked truecolor dither kernel setup code | Brian Paul | |
2000-12-08 | fixed bug 123918: glXCopySubBuffer() y position off by one | Brian Paul | |
2000-11-27 | minor changes to fix compiler warnings | Brian Paul | |
2000-11-24 | Support for swappable t&l modules, including an example one in the FX | Keith Whitwell | |
driver (enable with FX_ALLOW_VTXFMT=t). | |||
2000-11-23 | More auto* build system updates | Jon Taylor | |