Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-02-03 | fix errorneously adding fog state params to all vertex programs... | Roland Scheidegger | |
2007-02-02 | Merge branch 'vbo-0.2' | Keith Whitwell | |
Conflicts: src/mesa/main/texcompress_s3tc.c src/mesa/tnl/t_array_api.c | |||
2007-02-02 | Merge branch 'vbo-0.2-origin' into vbo-0.2 | Keith Whitwell | |
2007-02-02 | Modify assert to reflect rebase criteria | Keith Whitwell | |
2007-02-02 | push commit 2dfb3a217f730d6783fb2ac8b73248dc682f923c to i915tex | Zou Nan hai | |
2007-02-02 | Fix fd.o #9686, when fall into vertex fog, | Zou Nan hai | |
fog factors are precomputed in t_vb_fog.c compute_fog_blend_factors, which is incompatible with appended fragment fog code. That will make GoogleEarth display abnormally. always use pixel fog. | |||
2007-02-01 | fix missing ADD_POINTERS, fixes crashes if the index elements are in a vbo. | Roland Scheidegger | |
2007-02-01 | Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesa | Brian | |
2007-02-01 | fix mem leak in __glXReportDamage (Panagiotis Papadakos) | Brian | |
2007-02-01 | Correct usage/meaning of max_index parameter. | Keith Whitwell | |
2007-02-01 | Cope with internally-generated null inputs. | Keith Whitwell | |
2007-02-01 | driDestroyDisplay: Fix comment, it is called now. | Michel Dänzer | |
2007-02-01 | driDestroyDisplay: Remove Drivers list entry when dlclosing its handle. | Michel Dänzer | |
This fixes a regression from commit f81b1dbe374fe446f6ef676e70a72952ffb47d4e: Since then, driDestroyDisplay gets called from __glXFreeDisplayPrivate. It dlcloses the handles associated with the display but fails to remove their references from the Drivers list, so subsequent calls to OpenDriver return a stale handle and an invalid createNewScreenFunc pointer. The attempt to call the latter results in a segfault when running amoeba, e.g. | |||
2007-02-01 | fix unitialized values in radeonClear | Roland Scheidegger | |
2007-01-31 | _mesa_pack_rgba_span_float: fix for packing data into group | Xiang, Haihao | |
2007-01-30 | Use new rebase helper. Remove other rebase code. | Keith Whitwell | |
2007-01-30 | Helper for rebasing draw requests where min_index != 0. | Keith Whitwell | |
2007-01-30 | regenerated | Brian | |
2007-01-30 | s/params/pointer/ for glGetVertexAttribPointer | Brian | |
2007-01-30 | bump version to 6.5.3 | Brian | |
2007-01-30 | s/params/pointer/ for glGetVertexAttribPointer | Brian | |
2007-01-30 | s/params/pointer/ for glGetVertexAttribPointer | Brian | |
2007-01-30 | s/params/pointer/ for glGetVertexAttribPointer | Brian | |
2007-01-30 | nouveau: argh | Ben Skeggs | |
2007-01-30 | nouveau: misc NV40 fixes | Ben Skeggs | |
2007-01-30 | nouveau: NV40 glClipPlane support. | Ben Skeggs | |
2007-01-30 | nouveau: rework shader param handling | Ben Skeggs | |
Conflicts: src/mesa/drivers/dri/nouveau/nouveau_shader_0.c | |||
2007-01-30 | nouveau: oops, build attrib map after we know how the final shader will look.. | Ben Skeggs | |
2007-01-30 | nouveau: remove an unused table | Ben Skeggs | |
2007-01-30 | nouveau: oops | Ben Skeggs | |
2007-01-30 | nouveau: maintain a map of which vtxprog input corresponds to which array | Ben Skeggs | |
2007-01-30 | nouveau: unhardcode some more NV30TCL_FP_CONTROL values | Ben Skeggs | |
2007-01-29 | nouveau : NOUVEAU_RING_TRACE | Matthieu Castet | |
allow to print what we are really sending to the fifo. | |||
2007-01-29 | nouveau : nv10 comment icomplete command | Matthieu Castet | |
2007-01-28 | nouveau : nv10 mixing cached stuff with not cached stuff is bad. | Matthieu Castet | |
2007-01-28 | nouveau: fix nv30 line width | Ben Skeggs | |
2007-01-28 | nouveau: initial GL_ARB_occlusion_query support | Ben Skeggs | |
Only enabled on NV40, NV20/NV30 code is untested.. However, NV30 should be identical to NV40. | |||
2007-01-28 | nouveau: extend notifier interface to allow multiple notifiers in a memory ↵ | Ben Skeggs | |
block. | |||
2007-01-27 | Updated copyright header. | Claudio Ciccani | |
Switched to LGPL (GPL header was a cut-&-paste mistake). | |||
2007-01-27 | Bug 9628: no entry for GetVertexAttribPointerv | George Sapountzis | |
This is because (in glX_API.xml) GetVertexAttribPointerv is aliased to GetVertexAttribPointervARB which is then aliased to GetVertexAttribPointervNV. Make GetVertexAttribPointerv alias GetVertexAttribPointervNV directly. Patch by Ian Romanick <idr@us.ibm.com> and regenerate. | |||
2007-01-26 | Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesa | Brian | |
2007-01-26 | fix typo | Brian | |
2007-01-27 | nouveau: more work on nv04, this time buffer format/pitches/... | Stephane Marchesin | |
2007-01-26 | document, re-indent _mesa_ffsll() | Brian | |
2007-01-26 | Merge branch 'master' of git+ssh://brianp@git.freedesktop.org/git/mesa/mesa | Brian | |
2007-01-26 | Bug #9604: Fix a static buffer allocation failure. | Eric Anholt | |
The pool that the static buffer got allocated from was sized by pitch * height, but the buffer generated from it had its size aligned to a tile boundary, so allocation failed if pitch * height wasn't aligned. However, the 2d driver ensures that the size ends at a tile boundary, so just pass the 2d driver's buffer size rather than calculating it. | |||
2007-01-26 | Add _mesa_ffsll() for compatibility on OSes without ffsll(), and use it. | Eric Anholt | |
2007-01-26 | Remove dead code causing a warning. | Eric Anholt | |
2007-01-26 | Override Const.CheckArrayBounds for Xserver in XMesaCreateContext(). | George Sapountzis | |
This leaves one last XFree86Server ifdef in Mesa core. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. | |||
2007-01-26 | Drop old (pre-AIGLX) GLcore interface. | George Sapountzis | |
The old GLcore interface was replaced in Xorg 7.1 with the addition of AIGLX, it is only used by DDX's which are known not to work with the new DIX glx code. --- Bug 9285: misc glcore, xmesa cleanups ACKed by Ian Romanick. |