summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
Commit message (Collapse)AuthorAgeFilesLines
* Use a lookup table to compute exponents in tnl fogging code. SlightlyKeith Whitwell2001-02-063-13/+12
| | | | clean up the shine table lookup macro.
* replaced frustrum with frustumBrian Paul2001-02-051-2/+2
|
* Committing in .Jouk Jansen2001-02-051-0/+8
| | | | | | | | | Modified Files: Mesa/src/descrip.mms Updated VMS make-files ----------------------------------------------------------------------
* Some more work on interal debugging, timing routines for things thatGareth Hughes2001-02-031-5/+7
| | | | | will have implementations in assembly code. To come: texture image conversions, more of internal T&L pipeline and so on.
* Committing in .Jouk Jansen2001-01-311-0/+4
| | | | | | | | Modified Files: Mesa/src/descrip.mms Updates VMS compile-support ----------------------------------------------------------------------
* added packed types to glGetMinMax and glGetHistogram error checksBrian Paul2001-01-301-4/+28
|
* GL_SHADE_MODEL wasn't popped correctlyBrian Paul2001-01-291-2/+2
|
* removed unused varsBrian Paul2001-01-291-2/+1
|
* Removed knowledge of swrast Clear/Bitmap/Accum/Draw/Read/CopyPixelsKeith Whitwell2001-01-298-116/+99
| | | | | | | | | | | | 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.
* redo _mesa_PopAttrib() to call Mesa state functions so derived state is updatedBrian Paul2001-01-241-185/+210
|
* removed the unused/broken GL_PGI_misc_hints extensionBrian Paul2001-01-248-361/+12
|
* Lots of GLchan datatype changes.Brian Paul2001-01-2411-149/+162
| | | | | | | | | 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
* Replaced struct gl_visual with struct __GLcontextModesRec from glcore.h.Brian Paul2001-01-2315-223/+199
| | | | | Replace "RGBAMode" with "rgbMode", etc. Other minor clean-ups.
* fixed glTexSubImage error check bug #128775Brian Paul2001-01-231-2/+3
|
* Fixes for performance bug on compiled array element paths.Keith Whitwell2001-01-171-18/+4
|
* Fixed conform feedback and drawelements tests.Keith Whitwell2001-01-143-8/+5
| | | | Use correct pv when rasterizing unfilled polys.
* fix conform dlist testKeith Whitwell2001-01-132-12/+15
|
* Fix crash in book/stencil.Keith Whitwell2001-01-132-13/+13
| | | | | Allow drivers to perform the perspective divide themselves. Assembly to do cliptesting without perspective divide for size-4 vectors.
* Added PointSize and PointParametersfv to dd interface, for completeness.Brian Paul2001-01-092-110/+146
| | | | Clean-up and updated comments in dd.h file.
* Fixed 'IRound' to 'IROUND' in mmath.hKeith Whitwell2001-01-082-5/+6
| | | | | | Fixed fallback path for drawarrays/_tnl_hard_begin. Removed disabled debug code.
* Still need 'DD_TRI_CULL_FRONT_BACK'Keith Whitwell2001-01-081-3/+3
|
* Add a 'RenderPrimitive' callback to t_vb_render.c. Helps out driversKeith Whitwell2001-01-089-31/+32
| | | | | | | | | | that used to require a 'ReducedPrimitiveChange' callback. Various compilation fixes for XFree86. Reverted to the older version of glcore.h used internally in XFree86, and moved it to 'Mesa/include/GL/internal/glcore.h', for compatibility with XFree86.
* Implementation of GL_EXT_texture_env_dot3.Gareth Hughes2001-01-064-55/+69
|
* Committing in .Jouk Jansen2001-01-051-5/+1
| | | | | | | | Modified Files: Mesa/src/descrip.mms VMS makefile update ----------------------------------------------------------------------
* various compilation/warning fixesKeith Whitwell2001-01-054-8/+8
|
* Remove 'pv' parameter from Line/Tri/Point funcs. The provoking vertexKeith Whitwell2001-01-056-26/+30
| | | | | | | | | | | | | | 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.
* added underflow check in validate_shine_table()Brian Paul2001-01-041-2/+5
|
* More color macro clean-ups.Brian Paul2001-01-033-23/+32
| | | | FLOAT_TO_CHAN() macro removed.
* minor clean-upBrian Paul2001-01-031-24/+25
|
* missed a few color macro changesBrian Paul2001-01-021-8/+8
|
* Removed fixed.h (GLfixed now in mtypes.h, fixed-pt macros in mmath.h)Brian Paul2001-01-027-166/+109
| | | | | Clean-up of color conversion macros. New mmath.h macros (IROUND, IFLOOR, ICEIL, FRAC) used in various places.
* include state.hBrian Paul2001-01-021-2/+3
|
* Committing in .Jouk Jansen2001-01-022-115/+137
| | | | | | | | | | | | Modified Files: Mesa/demos/descrip.mms Mesa/src/descrip.mms Mesa/src/dispatch.c -Updated VMS compile suppport -Included glthread.h in dispatch.c to make sure that THREADS is defined if i.e. PTHREADS is defined in the makefile. ----------------------------------------------------------------------
* Add render stage for unclipped vb's to fx driver.Keith Whitwell2000-12-283-4/+7
| | | | | | Bump MAX_TEXTURE_UNITS to 8 Fix mem. leak in destroy_lists Fix crash in q3 (cva generally)
* try and force a log messageKeith Whitwell2000-12-281-1/+0
|
* try and force a log messageKeith Whitwell2000-12-281-0/+1
|
* try and force a log messageKeith Whitwell2000-12-281-1/+0
|
* try and force a log messageKeith Whitwell2000-12-272-1/+3
|
* try and force a log messageKeith Whitwell2000-12-271-2/+1
|
* try and force a log messageKeith Whitwell2000-12-271-1/+2
|
* try and force a log messageKeith Whitwell2000-12-271-2/+1
|
* fix demos/fire, enable lazy vertex flushingKeith Whitwell2000-12-273-5/+10
|
* fix xscreensaver coresKeith Whitwell2000-12-261-3/+4
|
* Major rework of tnl moduleKeith Whitwell2000-12-2647-2556/+3896
| | | | | | | 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.
* set visual->MRD to 2.0Brian Paul2000-12-161-2/+2
|
* Polygon._OffsetAny wasn't being computedBrian Paul2000-12-161-2/+5
|
* Renamed texture object _P to _MaxLevel and _M to _MaxLambda.Brian Paul2000-12-144-21/+23
| | | | Now add BaseLevel in _MaxLevel computation.
* fixed conformance problems in min/max and histogram result packingBrian Paul2000-12-131-139/+331
|
* improved precision of glReadPixels for colorbuffers < 24bppBrian Paul2000-12-132-2/+52
|
* generate GL_INVALID_OPERATION error for bad image format/type combinationsBrian Paul2000-12-103-58/+44
|