Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-10-20 | progs/trivial: check if GL_ARB_occlusion_query is supported | Brian Paul | |
2009-07-28 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: Makefile configs/default docs/relnotes.html src/mesa/main/version.h | |||
2009-07-28 | progs/trivial: add missing files to Makefile, .gitignore | Vinson Lee | |
2009-07-03 | Merge branch 'mesa_7_5_branch' | Jakob Bornecrantz | |
Conflicts: src/mesa/main/dlist.c src/mesa/vbo/vbo_save_api.c | |||
2009-06-30 | mesa/vbo: fix compile and replay of nodes ending in a FALLBACK | Keith Whitwell | |
Where vbo save nodes are terminated with a call to DO_FALLBACK(), as in the case of a recursive CallList which is itself within a Begin/End pair, there two problems: 1) The display list node's primitive information was incorrect, stating the cut-off prim had zero vertices 2) On replay, we would get confused by a primitive that started in a node, but was terminated by individual opcodes. This change fixes the first problem by correctly terminating the last primitive on fallback, and the second by forcing the display list to use the Loopback path, converting all nodes into immediate-mode rendering. The loopback fix is a performance hit, but avoiding this would require a fairly large rework of this code. | |||
2009-06-30 | progs/trivial: add dlist-mat-tri.c | Keith Whitwell | |
2009-06-30 | progs/trivial: add test case for short-circuiting material changes | Keith Whitwell | |
Similar to dlist-tri-flat-tri, but using glMaterial calls, which have the extra property of being legal within Begin/End calls. | |||
2009-06-30 | progs/trivial: add dlist-flat-tri.c | Keith Whitwell | |
State-change functions which precede the first call to glEnd() in a compiled list are vulnerable to not being executed when that list is called. In particular this can happen if a list is invoked from within a begin/end pair, as in this example. | |||
2009-06-30 | progs/trivial: add dlist-recursive-call | Keith Whitwell | |
When one display list calls another display list, it is possible that the calling display list makes state-changes or other actions which invalidate any attempt at caching or state-change elimination in the calling list. This test exercises one such case, where the called list consists of just a single glShadeModel() call. | |||
2009-06-30 | dlist-tri-flat-tri: make tri render differently if flatshade not enabled | Keith Whitwell | |
When testing flat-shading, it helps to specify per-vertex colors so that you can distinguish between flat & smooth shading. | |||
2009-06-30 | Merge branch 'mesa_7_5_branch' into dlist-statechange-shortcircuit | Keith Whitwell | |
Need this to pick up fixes for per-vertex materials. | |||
2009-06-30 | progs/trivial: add test case for lighting plus per-vertex materials | Keith Whitwell | |
Exercise material-within-begin/end case. | |||
2009-06-30 | progs/trivial: test case for dlist statechange elimination | Keith Whitwell | |
Creates a display list with redundant call to glShadeModel. View dlist contents with MESA_VERBOSE=list | |||
2009-06-04 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
Conflicts: src/mesa/main/context.c | |||
2009-06-01 | trivial/tri-z: add controls for depthrange min/max | Keith Whitwell | |
Also add key to set up quake-1 style ztrick rendering with clear depth 1.0, deptrange(1.0, 0.0) and depthfunc GL_GREATER. | |||
2009-05-12 | progs/trivial: update .gitignore with new binaries | Joakim Sindholt | |
2009-05-11 | trivial: destroy window upon exit | Brian Paul | |
2009-05-08 | progs/trivial: add test for vertex program invarient transform | Keith Whitwell | |
2009-05-08 | progs/trivial: add vbo-noninterleaved test | Keith Whitwell | |
2009-05-08 | trivial: add line-flat.c | Keith Whitwell | |
2009-04-21 | trivial/tri-viewport: add keys for frustrum/ortho and z coordinate | Keith Whitwell | |
2009-04-21 | trivial/tri-viewport: add more out-of-bounds background quads | Keith Whitwell | |
2009-04-21 | trivial/tri_viewport: add space==reset key | Keith Whitwell | |
2009-04-21 | trivial/tri_viewport: add width/height keys | Keith Whitwell | |
2009-04-20 | trivial/tri-viewport.c - add guide lines, more triangles, make interactive | Keith Whitwell | |
This is becoming more like a test than a trivial/ example. | |||
2009-04-02 | progs: Ignores | Jakob Bornecrantz | |
2009-03-24 | progs/trivial: add fflushes for cygwin | Keith Whitwell | |
2009-03-24 | progs/trivial: draw non-interleaved arrays out of one vbo | Keith Whitwell | |
2009-03-18 | progs/trivial: Make quad-tex-sub repeat patterns | Jakob Bornecrantz | |
2009-03-18 | tests: remove/update old comments | Brian Paul | |
2009-03-18 | progs/trivial: Add quad-tex-sub | Jakob Bornecrantz | |
Tests glTexSubImage | |||
2009-03-18 | progs/trivial: Add tri-fbo-tex-mip | Jakob Bornecrantz | |
Tests rendering to mip levels other then first | |||
2009-03-16 | progs/trivial: Ignores | Jakob Bornecrantz | |
2009-03-12 | trivial: draw non-interleaved arrays | Keith Whitwell | |
2009-03-10 | trivial: add a logic op test | Keith Whitwell | |
2009-03-09 | trivial: add tri-stipple to SConscript | Keith Whitwell | |
2009-03-04 | clear-repeat: print fps, use 300x300 window size | Keith Whitwell | |
2009-02-21 | trivial: Add tri-viewport | Jakob Bornecrantz | |
2009-02-21 | trivial: Fix indentation in tri | Jakob Bornecrantz | |
2009-02-19 | trival: Make the last of progs show the name | Jakob Bornecrantz | |
2009-02-14 | trivial: Add quadstrip-clip | Jakob Bornecrantz | |
2009-02-18 | progs/trivial: Label program windows with actual program name | Keith Whitwell | |
Each of these programs previously called itself "First Tri" which was a little confusing. Could have left one as "First Tri", but the trouble then is that people would still clone that file & we'd end up with another thousand first tri apps... | |||
2009-02-13 | trivial: Make tri-fog a bit more interesting to look at | Jakob Bornecrantz | |
2009-02-13 | trivial: Add a tri-unfilled-fog test | Jakob Bornecrantz | |
2009-02-01 | progs: Get more samples building on windows. | José Fonseca | |
2009-01-23 | progs: Ignore more output executables. | José Fonseca | |
2009-01-23 | progs/trivial: Use glew where needed. | José Fonseca | |
Builds on windows now. | |||
2009-01-19 | Merge commit 'origin/gallium-0.2' into gallium-xlib-rework | Keith Whitwell | |
2009-01-14 | trivial: clear with random color | Keith Whitwell | |
2009-01-14 | progs: List tri-clear. | José Fonseca | |